alsdsjdfkj

This commit is contained in:
stitchy 2023-08-06 16:57:34 +00:00
parent e6e98a16de
commit 15c4cae652
Signed by: stitchy
SSH key fingerprint: SHA256:c/c0ZtbxK+xTeP1ixbrfL7QgB7WXN47u8k3OC8VvYqs
2 changed files with 21 additions and 17 deletions

View file

@ -19,31 +19,26 @@
home-manager, home-manager,
hyprland, hyprland,
... ...
}: { } @inputs : {
nixpkgs.hostPlatform = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { pkgs = import nixpkgs {
#config.allowUnfree = true; #config.allowUnfree = true;
}; };
stitchynyan = nixpkgs.lib.nixosSystem {
modules = [
nixosConfigurations = { ./configuration.nix
home-manager.nixosModules.home-manager
hostname = nixpkgs.lib.nixosSystem { {
modules = [ _module.args = {inherit inputs;};
./configuration.nix home-manager.extraSpecialArgs = {inherit inputs;};
home-manager.nixosModules.home-manager }
{ ];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = false;
home-manager.users.stitchynyan = import ./users/stitchynyan/home.nix ;
}
hyprland.homeManagerModules.default
{wayland.windowManager.hyprland.enable = true;}
];
};
}; };
}; };
} }

View file

@ -1,3 +1,12 @@
{ config, pkgs, ... } { config, pkgs, ... }:
{
imports = [
inputs.nix-index-db.hmModules.nix-index
];
}