hurricane: 19 current 2025-06-17 16:17:34 25.05.20250615.6c64dab 6.15.2 *

This commit is contained in:
2025-06-17 16:17:36 +02:00
parent 1bbe3ef6f7
commit f538c04b0c
2 changed files with 12 additions and 7 deletions

View File

@ -57,20 +57,16 @@
}; };
}; };
outputs = { outputs = {nixpkgs, ...} @ inputs: {
self,
nixpkgs,
...
}: {
nixosConfigurations = { nixosConfigurations = {
wildfire = nixpkgs.lib.nixosSystem { wildfire = nixpkgs.lib.nixosSystem {
specialArgs = {inputs = self.inputs // {inherit self;};}; specialArgs = {inherit inputs;};
modules = [ modules = [
./hosts/wildfire/configuration.nix ./hosts/wildfire/configuration.nix
]; ];
}; };
hurricane = nixpkgs.lib.nixosSystem { hurricane = nixpkgs.lib.nixosSystem {
specialArgs = {inputs = self.inputs // {inherit self;};}; specialArgs = {inherit inputs;};
modules = [ modules = [
./hosts/hurricane/configuration.nix ./hosts/hurricane/configuration.nix
]; ];

View File

@ -11,10 +11,19 @@
power-profiles-daemon.enable = true; power-profiles-daemon.enable = true;
}; };
nix.settings = {
substituters = ["https://hyprland.cachix.org"];
trusted-substituters = ["https://hyprland.cachix.org"];
trusted-public-keys = ["hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="];
};
programs = { programs = {
hyprland = { hyprland = {
enable = true; enable = true;
withUWSM = true; withUWSM = true;
# Only enable the flake packages after Cachix has already been enabled
#package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
#portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
}; };
regreet.enable = true; regreet.enable = true;
uwsm = { uwsm = {