diff --git a/flake.nix b/flake.nix index a1c5b3e..579e45d 100644 --- a/flake.nix +++ b/flake.nix @@ -47,6 +47,7 @@ userModules = [ ./modules/user/git ./modules/user/homeversion + ./modules/user/shell ]; in { diff --git a/modules/user/plasma/default.nix b/modules/user/plasma/default.nix index 37989b7..877f9b3 100644 --- a/modules/user/plasma/default.nix +++ b/modules/user/plasma/default.nix @@ -12,7 +12,6 @@ home.file."Bilder/Wallpaper/wallpaper-retrogirl.png".source = ../../../assets/wallpaper-retrogirl.png; home.file.".config/kwinrc".source = ../../../dotfiles/kwinrc; home.file.".local/share/user-places.xbel".source = ../../../dotfiles/user-places.xbel; - home.file.".zshrc".source = ../../../dotfiles/zshrc; programs.plasma = { diff --git a/modules/user/shell/default.nix b/modules/user/shell/default.nix new file mode 100644 index 0000000..fb3e8c6 --- /dev/null +++ b/modules/user/shell/default.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + home.file.".zshrc".source = ../../../dotfiles/zshrc; +}