Forcing unstable does not work well with setting nix paths, separate that into its own nix file
This commit is contained in:
parent
66bfbba1f3
commit
1b8721c683
5 changed files with 24 additions and 19 deletions
|
@ -61,7 +61,7 @@
|
|||
nixos-mailserver.nixosModule
|
||||
];
|
||||
};
|
||||
JimDeck = nixpkgs-unstable.lib.nixosSystem {
|
||||
JimDeck = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./nixos/deck.nix
|
||||
|
@ -70,7 +70,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
# Standalone home-manager configuration entrypoint
|
||||
# Standalone home-manager configuration
|
||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||
homeConfigurations = {
|
||||
"jimbo@JimDesktop" = home-manager.lib.homeManagerConfiguration {
|
||||
|
@ -89,7 +89,7 @@
|
|||
];
|
||||
};
|
||||
"jimbo@JimDeck" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs-unstable.legacyPackages.x86_64-linux;
|
||||
pkgs = nixpkgs.legacyPackages.x86_64-linux;
|
||||
extraSpecialArgs = {inherit inputs outputs;};
|
||||
modules = [
|
||||
./home-manager/jimbo_deck.nix
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue