Regenerated

This commit is contained in:
2026-03-21 19:46:35 +00:00
parent 9af2c54b12
commit 7cabf4ce3a
30 changed files with 30 additions and 1555 deletions
@@ -1,16 +0,0 @@
{ lib, config, ... }:
let
username = config.defaultUser or "henrov";
assetPath = ../../../assets/hyprland/conf/hypr;
mainConfigPath = "${assetPath}/hyprland.conf";
in
{
"${username}" = {
settings.general."col.active_border" =
lib.mkForce "0xff97cbcd 0xff89b4fa";
xdg.configFile."hypr/hyprland.conf".text =
builtins.readFile mainConfigPath;
};
}
@@ -1,23 +0,0 @@
{ lib, config, pkgs, ... }:
let
username = "henrov";
in
{
# NixOS system user
users.users.${username} = {
isNormalUser = true;
home = "/home/${username}";
hashedPassword = "$6$S7iShgBxB.77CwmP$i0njK.2r3OL5UEvgZbmwZ0rnpZ4QyJcv8p9uCmJ4AiVPSMXkQkIwMLzyAOnJ0q8.tPLIp/7EquEIZeK8qbmgw/";
extraGroups = [ "wheel" "networkmanager" ];
};
# ONLY return HM user attrset (IMPORTANT)
_module.args.hmUsers = {
${username} = {
home.stateVersion = "26.05";
home.username = username;
home.homeDirectory = "/home/${username}";
};
};
}