refactor(home): reorganize home.nix to improve readability

This commit is contained in:
Pierre Martin
2022-09-03 07:37:12 +02:00
parent 12fb4f08c2
commit 4e45bd1db8

View File

@@ -14,29 +14,17 @@
./programs/zsh.nix ./programs/zsh.nix
]; ];
programs.htop.enable = true;
programs.vim.enable = true;
programs.vscode = { programs.vscode = {
enable = true; enable = true;
extensions = [ ]; extensions = [ ];
}; };
services.unclutter.enable = true;
services.gpg-agent.enable = true;
services.blueman-applet.enable = true;
programs.rofi = { programs.rofi = {
enable = true; enable = true;
plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ]; plugins = [ pkgs.rofi-calc pkgs.rofi-emoji ];
terminal = "sakura"; terminal = "sakura";
}; };
programs.htop = {
enable = true;
};
programs.vim = {
enable = true;
};
programs.autorandr = { programs.autorandr = {
enable = true; enable = true;
hooks = { hooks = {
@@ -45,4 +33,8 @@
}; };
}; };
}; };
services.unclutter.enable = true;
services.gpg-agent.enable = true;
services.blueman-applet.enable = true;
} }