Format using nixfmt
This commit is contained in:
		| @@ -1,4 +1,9 @@ | ||||
| { config, lib, pkgs, ... }: | ||||
| { | ||||
|   config, | ||||
|   lib, | ||||
|   pkgs, | ||||
|   ... | ||||
| }: | ||||
|  | ||||
| { | ||||
|   imports = [ ./hardware-configuration.nix ]; | ||||
| @@ -9,7 +14,6 @@ | ||||
|   sops.age.generateKey = true; | ||||
|   sops.secrets."gotify_tokens/backup-home" = { }; | ||||
|  | ||||
|  | ||||
|   # Bootloader stuff | ||||
|   boot.kernelParams = [ | ||||
|     "quiet" | ||||
| @@ -20,7 +24,9 @@ | ||||
|     enable = true; | ||||
|     configurationLimit = 10; | ||||
|   }; | ||||
|   boot.loader.efi = { canTouchEfiVariables = true; }; | ||||
|   boot.loader.efi = { | ||||
|     canTouchEfiVariables = true; | ||||
|   }; | ||||
|  | ||||
|   # Networking stuff | ||||
|   networking.hostName = "prismo"; # Define your hostname. | ||||
| @@ -65,14 +71,20 @@ | ||||
|   xdg.portal = { | ||||
|     enable = true; | ||||
|     xdgOpenUsePortal = true; | ||||
|     extraPortals = (with pkgs; [ | ||||
|       xdg-desktop-portal-hyprland | ||||
|       xdg-desktop-portal-gtk | ||||
|     ]); | ||||
|     extraPortals = ( | ||||
|       with pkgs; | ||||
|       [ | ||||
|         xdg-desktop-portal-hyprland | ||||
|         xdg-desktop-portal-gtk | ||||
|       ] | ||||
|     ); | ||||
|   }; | ||||
|  | ||||
|   # Enable flakes | ||||
|   nix.settings.experimental-features = [ "nix-command" "flakes" ]; | ||||
|   nix.settings.experimental-features = [ | ||||
|     "nix-command" | ||||
|     "flakes" | ||||
|   ]; | ||||
|  | ||||
|   nixpkgs.config.allowUnfree = true; | ||||
|   # Install system-wide packages | ||||
|   | ||||
		Reference in New Issue
	
	Block a user