forked from stitchy/dotfiles
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,
|
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 {
|
||||||
nixosConfigurations = {
|
|
||||||
|
|
||||||
hostname = nixpkgs.lib.nixosSystem {
|
|
||||||
modules = [
|
modules = [
|
||||||
|
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
home-manager.nixosModules.home-manager
|
home-manager.nixosModules.home-manager
|
||||||
|
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
_module.args = {inherit inputs;};
|
||||||
home-manager.useUserPackages = false;
|
home-manager.extraSpecialArgs = {inherit inputs;};
|
||||||
home-manager.users.stitchynyan = import ./users/stitchynyan/home.nix ;
|
|
||||||
}
|
}
|
||||||
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