From 8aa1b0ed0a50befc41f84b69b9158a98a432614c Mon Sep 17 00:00:00 2001 From: joygnu Date: Sun, 22 Sep 2024 14:45:18 +0200 Subject: [PATCH] eh --- flake.nix | 2 +- hosts/phone/default.nix | 8 +++++++- hosts/phone/home.nix | 9 --------- 3 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 hosts/phone/home.nix 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 - ]; - - }