22 lines
563 B
Nix
22 lines
563 B
Nix
{
|
|
self,
|
|
inputs,
|
|
...
|
|
}: {
|
|
flake.homeConfigurations."jonas@comfy-station" = inputs.home-manager.lib.homeManagerConfiguration {
|
|
pkgs = import inputs.nixpkgs {system = "x86_64-linux";};
|
|
modules = [
|
|
({...}: {nixpkgs.overlays = [self.overlays.unstable inputs.audio.overlays.default];})
|
|
({...}: {nixpkgs.config.allowUnfree = true;})
|
|
|
|
./configuration.nix
|
|
|
|
inputs.sops-nix.homeManagerModules.sops
|
|
self.homeModules.layan
|
|
self.homeModules.hyprland
|
|
self.homeModules.swaync
|
|
self.homeModules.waybar
|
|
];
|
|
};
|
|
}
|