more sanely split things

This commit is contained in:
stitchy 2023-08-06 04:03:24 +00:00
parent dd9c0eeff6
commit c2796dcfb9
Signed by: stitchy
SSH key fingerprint: SHA256:c/c0ZtbxK+xTeP1ixbrfL7QgB7WXN47u8k3OC8VvYqs
7 changed files with 118 additions and 97 deletions

View file

@ -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;}
];
};
};