alsdsjdfkj
This commit is contained in:
parent
e6e98a16de
commit
15c4cae652
2 changed files with 21 additions and 17 deletions
19
flake.nix
19
flake.nix
|
@ -19,31 +19,26 @@
|
|||
home-manager,
|
||||
hyprland,
|
||||
...
|
||||
}: {
|
||||
} @inputs : {
|
||||
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
system = "x86_64-linux";
|
||||
|
||||
|
||||
pkgs = import nixpkgs {
|
||||
#config.allowUnfree = true;
|
||||
};
|
||||
|
||||
|
||||
nixosConfigurations = {
|
||||
|
||||
hostname = nixpkgs.lib.nixosSystem {
|
||||
stitchynyan = nixpkgs.lib.nixosSystem {
|
||||
modules = [
|
||||
|
||||
./configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = false;
|
||||
home-manager.users.stitchynyan = import ./users/stitchynyan/home.nix ;
|
||||
_module.args = {inherit inputs;};
|
||||
home-manager.extraSpecialArgs = {inherit inputs;};
|
||||
}
|
||||
hyprland.homeManagerModules.default
|
||||
{wayland.windowManager.hyprland.enable = true;}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,3 +1,12 @@
|
|||
|
||||
|
||||
{ config, pkgs, ... }
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
imports = [
|
||||
inputs.nix-index-db.hmModules.nix-index
|
||||
];
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue