modeules update

This commit is contained in:
Odweta
2026-01-11 18:26:09 +01:00
parent dd5b4fe5ed
commit e9a34ec9fe
7 changed files with 20 additions and 15 deletions
BIN
View File
Binary file not shown.
BIN
View File
Binary file not shown.
+10
View File
@@ -0,0 +1,10 @@
{ pkgs, ... }:
{
programs.bash = {
enable = true;
shellAliases = {
rebuild = "sudo nixos-rebuild switch --flake /home/odweta/nixos/#nixos";
};
};
}
+1 -1
View File
@@ -3,5 +3,5 @@
{ {
environment.variables = { environment.variables = {
EDITOR = "vim"; EDITOR = "vim";
} };
} }
-5
View File
@@ -24,13 +24,8 @@
} }
./configuration.nix # FIXME: MODULARIZE ./configuration.nix # FIXME: MODULARIZE
./env-vars.nix ./env-vars.nix
./git.nix
#./hardware-configuration.nix #./hardware-configuration.nix
./hyprland.nix
./kitty.nix
./theme.nix ./theme.nix
./vim.nix
./xdg.nix
]; ];
}; };
}; };
+1 -1
View File
@@ -1,4 +1,4 @@
{ pkgs, ... }: { config, pkgs, ... }:
{ {
programs.git = { programs.git = {
+8 -8
View File
@@ -6,12 +6,12 @@
home.stateVersion = "25.05"; home.stateVersion = "25.05";
programs.home-manager.enable = true; programs.home-manager.enable = true;
home.file = { imports = [
".bashrc".text = '' ./bash.nix
./git.nix
''; ./hyprland.nix
}; ./kitty.nix
./vim.nix
#home.packages = with pkgs; [ ./xdg.nix
#]; ];
} }