more sanely split things
This commit is contained in:
parent
dd9c0eeff6
commit
c2796dcfb9
7 changed files with 118 additions and 97 deletions
21
flake.nix
21
flake.nix
|
@ -3,17 +3,32 @@
|
|||
|
||||
inputs = {
|
||||
nixpkgs = {
|
||||
url = "github:NixOS/nixpkgs/nixos-unstable"
|
||||
url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
};
|
||||
|
||||
home-manager-unstable = {
|
||||
url = "github:nix-community/home-manager/master";
|
||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||
};
|
||||
|
||||
hyprland.url = "github:hyprwm/Hyprland";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }: {
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
home-manager-unstable,
|
||||
hyprland
|
||||
}: {
|
||||
|
||||
nixosConfigurations = {
|
||||
stitchynyan = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux"
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
home-manager-unstable.nixosModules.home-manager
|
||||
hyprland.homeManagerModules.default
|
||||
{wayland.windowManager.hyprland.enable = true;}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue