Tried changing the nix-on-droid config

This commit is contained in:
2024-09-14 15:30:11 -03:00
parent 15c9763402
commit cd031d61df

View File

@@ -219,22 +219,19 @@
./modules/nix-on-droid.nix ./modules/nix-on-droid.nix
{ {
home-manager.useGlobalPkgs = true; home-manager = {
home-manager.useUserPackages = true; backupFileExtension = "hm-bak";
home-manager.extraSpecialArgs = { useGlobalPkgs = true;
inherit inputs;
inherit system;
};
home-manager.config = {
# Read the changelog before changing this value
home.stateVersion = "23.05";
imports = [ config = {...}: {
nur.hmModules.nur # Read the changelog before changing this value
./home/shell home.stateVersion = "24.05";
./home/applications
./home/desktops/kde # insert home-manager config
]; imports = [
./home/shell
];
};
}; };
} }
]; ];