switched to using home-manager as a standalone app to ensure that config will transfer
This commit is contained in:
parent
2578538507
commit
4f2782c0dc
5 changed files with 11 additions and 7 deletions
|
@ -24,6 +24,7 @@
|
|||
|
||||
outputs = { self, nixpkgs, stablepkgs, home-manager, ... } @ inputs:
|
||||
let
|
||||
inherit (self) outputs;
|
||||
system = "x86_64-linux";
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
stable = stablepkgs.legacyPacakges.${system};
|
||||
|
@ -37,12 +38,14 @@
|
|||
./hosts/gabbielaptop/configuration.nix
|
||||
./modules/nh.nix
|
||||
./modules/waydroid.nix
|
||||
inputs.home-manager.nixosModules.default
|
||||
# inputs.home-manager.nixosModules.default
|
||||
];
|
||||
};
|
||||
|
||||
# Standalone home-manager config
|
||||
homeConfigurations.blue = home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
extraSpecialArgs = { inherit inputs; };
|
||||
extraSpecialArgs = { inherit inputs outputs; };
|
||||
# Import home-manager modules here
|
||||
modules = [
|
||||
./home-manager/home.nix
|
||||
|
|
|
@ -6,6 +6,6 @@
|
|||
remotes = {
|
||||
"flathub" = "https://flathub.org/repo/flathub.flatpakrepo";
|
||||
"flathub-beta" = "https://flathub.org/beta-repo/flathub-beta.flatpakrepo";
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
home.packages = [
|
||||
# Add grimblast screenshot tool
|
||||
pkgs.grimblast
|
||||
pkgs.hello
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
"sober:/root/sober.flatpakref"
|
||||
# https://sober.vinegarhq.org/sober.flatpakref
|
||||
];
|
||||
remotes = [
|
||||
"sober" = "https://sober.vinegarhq.org/"
|
||||
]
|
||||
remotes = {
|
||||
"sober" = "https://sober.vinegarhq.org/sober.flatpakref";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -162,7 +162,7 @@
|
|||
tree
|
||||
tenacity
|
||||
mediawriter
|
||||
anyrun
|
||||
home-manager
|
||||
];
|
||||
|
||||
hardware.keyboard.qmk.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue