Skip to content

Commit

Permalink
fix: set console font & ssh agent
Browse files Browse the repository at this point in the history
  • Loading branch information
M0NsTeRRR committed Oct 7, 2024
1 parent e339039 commit 150c872
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
1 change: 1 addition & 0 deletions home/user/programs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
./hyprland.nix
./kitty.nix
./starship.nix
./ssh.nix
./vscode.nix
./zsh.nix
];
Expand Down
6 changes: 4 additions & 2 deletions home/user/programs/kitty.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{ pkgs, ... }:
{
programs.kitty = {
enable = true;
font.name = "JetBrainsMono Nerd Font";
font = {
name = "JetBrainsMono Nerd Font";
size = 12;
};
};
}
3 changes: 3 additions & 0 deletions home/user/programs/ssh.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
programs.ssh.startAgent = true;
}
9 changes: 8 additions & 1 deletion system/modules/internationalization.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
{ pkgs, ... }:
{
time.timeZone = "Europe/Paris";
i18n.defaultLocale = "fr_FR.UTF-8";

console.keyMap = "fr";
console = {
keyMap = "fr";
font = "ter-i32b";
packages = with pkgs; [
terminus_font
];
};

services = {
xserver = {
Expand Down

0 comments on commit 150c872

Please sign in to comment.