diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2025-03-15 09:08:42 +0100 |
---|---|---|
committer | Jasper Ras <jaspert.ras@gmail.com> | 2025-03-15 09:08:42 +0100 |
commit | 0c57d97b241e372f14ed2f809536ec7ff38b3e49 (patch) | |
tree | 94980f1afe4101d3950f51bda9a615c8c94b57c8 /flake.nix | |
parent | 8a37287c9e4e8edab43e5877252b0219485ee9ba (diff) |
bunch of things
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -9,8 +9,12 @@ disko.inputs.nixpkgs.follows = "nixpkgs"; helix.url = "github:helix-editor/helix/master"; + home-manager.url = "github:nix-community/home-manager/release-24.11"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; + home-manager-unstable.url = "github:nix-community/home-manager"; + home-manager-unstable.inputs.nixpkgs.follows = "nixpkgs"; + hyprland.url = "github:hyprwm/Hyprland?submodules=1&ref=v0.45.2-b"; hy3 = { url = "github:outfoxxed/hy3?ref=hl0.45.0"; @@ -22,6 +26,7 @@ nil.url = "github:oxalica/nil"; nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11"; + nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; nixos-facter-modules.url = "github:numtide/nixos-facter-modules"; update-systemd-resolved.url = "github:jonathanio/update-systemd-resolved"; @@ -33,8 +38,10 @@ agenix, disko, home-manager, + home-manager-unstable, microvm, nixpkgs, + nixpkgs-unstable, nixos-facter-modules, update-systemd-resolved, ... @@ -57,7 +64,7 @@ ]; }; - nixosConfigurations.tarrel = nixpkgs.lib.nixosSystem { + nixosConfigurations.tarrel = nixpkgs-unstable.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; }; modules = [ @@ -66,7 +73,7 @@ agenix.packages."x86_64-linux".default ]; } - home-manager.nixosModules.home-manager + home-manager-unstable.nixosModules.home-manager agenix.nixosModules.default ./modules/tarrel |