Home Gen487 @ 2025-03-22-20:32
This commit is contained in:
29
flake.nix
29
flake.nix
@@ -56,6 +56,16 @@
|
||||
./hosts/comfy-station/configuration.nix
|
||||
];
|
||||
};
|
||||
"jroeger.de" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = {
|
||||
inherit inputs;
|
||||
};
|
||||
modules = [
|
||||
({...}: {nixpkgs.overlays = [overlay-unstable];})
|
||||
./hosts/jroeger.de/configuration.nix
|
||||
];
|
||||
};
|
||||
vm = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = {
|
||||
@@ -66,7 +76,7 @@
|
||||
];
|
||||
};
|
||||
};
|
||||
homeConfigurations."jonas" = home-manager.lib.homeManagerConfiguration {
|
||||
homeConfigurations."jonas@comfy-station" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
|
||||
# Specify your home configuration modules here, for example,
|
||||
@@ -76,7 +86,22 @@
|
||||
({...}: {nixpkgs.config.allowUnfree = true;})
|
||||
inputs.plasma-manager.homeManagerModules.plasma-manager
|
||||
inputs.sops-nix.homeManagerModules.sops
|
||||
./home/jonas.nix
|
||||
(./home + "/jonas@comfy-station.nix")
|
||||
];
|
||||
|
||||
# Optionally use extraSpecialArgs
|
||||
# to pass through arguments to home.nix
|
||||
extraSpecialArgs = {inherit inputs;};
|
||||
};
|
||||
homeConfigurations."jonas@jroeger.de" = home-manager.lib.homeManagerConfiguration {
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
|
||||
# Specify your home configuration modules here, for example,
|
||||
# the path to your home.nix.
|
||||
modules = [
|
||||
({...}: {nixpkgs.overlays = [overlay-unstable];})
|
||||
({...}: {nixpkgs.config.allowUnfree = true;})
|
||||
(./home + "/jonas@jroeger.de.nix")
|
||||
];
|
||||
|
||||
# Optionally use extraSpecialArgs
|
||||
|
||||
Reference in New Issue
Block a user