Home Gen487 @ 2025-03-22-20:32

This commit is contained in:
2025-04-03 01:25:04 +02:00
parent 5cb2927045
commit 6c9e26377c
6 changed files with 139 additions and 42 deletions

View File

@@ -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