diff options
Diffstat (limited to '')
-rw-r--r-- | nix/profiles/home-manager/personal.nix (renamed from home/darwin.nix) | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/home/darwin.nix b/nix/profiles/home-manager/personal.nix index defd381..9072d63 100644 --- a/home/darwin.nix +++ b/nix/profiles/home-manager/personal.nix @@ -1,13 +1,13 @@ -{ config, pkgs, ... }: -{ +{ config, pkgs, ... }: { + home.stateVersion = "23.05"; imports = [ - ./dev.nix - ./firefox.nix - ./git.nix - ./ssh.nix - ./zsh.nix + ../../../home/dev.nix + ../../../home/firefox.nix + ../../../home/git.nix + ../../../home/ssh.nix + ../../../home/zsh.nix ]; home.packages = with pkgs; [ |