diff --git a/flake.nix b/flake.nix index d3a92be..7eafa44 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,7 @@ in { nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration { pkgs = import nixpkgs { system = "aarch64-linux"; }; - modules = [ .hosts/phone]; + modules = [ ./hosts/phone]; }; nixosConfigurations = { diff --git a/hosts/phone/default.nix b/hosts/phone/default.nix index 2419250..76e722c 100644 --- a/hosts/phone/default.nix +++ b/hosts/phone/default.nix @@ -54,7 +54,13 @@ home-manager = { - config = ./home.nix; + home.stateVersion = "24.05"; + + imports = [ + ./home + ]; + + # config = ./home.nix; }; user.shell = "${pkgs.zsh}/bin/zsh"; diff --git a/hosts/phone/home.nix b/hosts/phone/home.nix deleted file mode 100644 index 55574cc..0000000 --- a/hosts/phone/home.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ pkgs, ... }: -{ - home.stateVersion = "24.05"; - - imports = [ - ./home - ]; - - }