laied out the groundwork for hyprland

This commit is contained in:
2025-10-25 12:14:34 -05:00
parent 6fa11eea8f
commit 700943ab97
13 changed files with 531 additions and 39 deletions

View File

@@ -1,4 +1,4 @@
{ config, lib, stable_pkgs, unstable_pkgs, ... }:
{ config, lib, inputs, stable_pkgs, unstable_pkgs, ... }:
let
pkgs = stable_pkgs.x86_64;
@@ -16,6 +16,10 @@ in
../../../modules/gameservers/minecraft_recpro
];
home-manager.users.blake.imports = [
../../../users/blake/dots/git
];
system = {
ssh.enable = true;
sops.enable = true;
@@ -139,7 +143,7 @@ in
# Or disable the firewall altogether.
networking.firewall.enable = true;
system.stateVersion = "25.05"; # Did you read the comment?
system.stateVersion = "25.05"; # stays here : )
}