Better modules
This commit is contained in:
parent
85a23285b8
commit
21ed795cfd
16 changed files with 534 additions and 302 deletions
59
home.nix
59
home.nix
|
|
@ -8,6 +8,9 @@ in {
|
|||
enable = true;
|
||||
};
|
||||
|
||||
nixpkgs.config = import ./modules/config.nix;
|
||||
xdg.configFile."nixpkgs/config.nix".source = ./modules/config.nix;
|
||||
|
||||
home = {
|
||||
language.base = "it_IT.UTF-8";
|
||||
keyboard.layout = "it";
|
||||
|
|
@ -18,46 +21,34 @@ in {
|
|||
gnome3.nautilus
|
||||
procps-ng
|
||||
mmv-go
|
||||
terminator
|
||||
bottom
|
||||
];
|
||||
};
|
||||
|
||||
imports = [
|
||||
./modules/alacritty.nix
|
||||
./modules/bat.nix
|
||||
./modules/broot.nix
|
||||
./modules/dircolors.nix
|
||||
./modules/git.nix
|
||||
./modules/kakoune.nix
|
||||
./modules/qogir_theme.nix
|
||||
./modules/rofi.nix
|
||||
./modules/sxhkd.nix
|
||||
./modules/terminator.nix
|
||||
];
|
||||
|
||||
programs = {
|
||||
# alacritty = import ./modules/alacritty.nix pkgs;
|
||||
|
||||
bat = { enable = true; config.theme = "Nord"; };
|
||||
|
||||
command-not-found.enable = true;
|
||||
|
||||
broot = { enable = true; enableBashIntegration = true; enableZshIntegration = true; };
|
||||
|
||||
dircolors = { enable = true; enableBashIntegration = true; enableZshIntegration = true; };
|
||||
|
||||
direnv = { enable = true; enableBashIntegration = true; enableZshIntegration = true; enableNixDirenvIntegration = true; };
|
||||
|
||||
git = import ./modules/git.nix pkgs;
|
||||
|
||||
# command-not-found.enable = true;
|
||||
home-manager.enable = true;
|
||||
|
||||
info.enable = true;
|
||||
|
||||
kakoune = import ./modules/kakoune.nix pkgs;
|
||||
|
||||
rofi = import ./modules/rofi.nix pkgs;
|
||||
|
||||
zsh = {
|
||||
enableVteIntegration = true;
|
||||
};
|
||||
# info.enable = true;
|
||||
# kakoune = import ./modules/kakoune.nix pkgs;
|
||||
# zsh = {
|
||||
# enableVteIntegration = true;
|
||||
# };
|
||||
};
|
||||
|
||||
qt = {
|
||||
enable = true;
|
||||
platformTheme = "gtk";
|
||||
};
|
||||
|
||||
services = {
|
||||
# sxhkd = import ./modules/sxhkd.nix pkgs;
|
||||
};
|
||||
|
||||
xsession.numlock.enable = true;
|
||||
xsession.numlock.enable = true;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue