This commit is contained in:
biscuit
2025-05-13 18:17:17 -05:00
parent 9290d27146
commit 2576eacb6b
7 changed files with 473 additions and 3 deletions
+4 -1
View File
@@ -7,6 +7,8 @@
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs"; # ensures version follows nixpkgs
hyprland.url = "github:hyprwm/Hyprland";
};
#outputs = { self, nixpkgs, nixpkgsveryold }:
@@ -22,7 +24,7 @@
# };
#};
outputs = { self, nixpkgs, home-manager, ... }:
outputs = { self, nixpkgs, home-manager, ... } @ inputs:
let
lib = nixpkgs.lib;
system = "x86_64-linux";
@@ -30,6 +32,7 @@
in {
nixosConfigurations = {
biscuit = lib.nixosSystem {
specialArgs = { inherit inputs system; };
inherit system;
modules = [ ./nixos/configuration.nix ];
};