nixcfg/hosts/petalburg/home.nix

21 lines
479 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{ inputs, config, pkgs, lib, ... }:
{
2024-04-06 12:12:40 -04:00
users.users.aly.hashedPassword =
"$y$j9T$Ug0ZLHQQuRciFJDgOI6r00$eHc.KyQY0oU4k0LKRiZiGWJ19jkKNWHpOoyCJbtJif8";
2024-03-28 19:52:15 -04:00
home-manager.users.aly = {
imports = [ ../../homeManagerModules ];
home.username = "aly";
home.homeDirectory = "/home/aly";
home.stateVersion = "23.11";
programs.home-manager.enable = true;
2024-04-05 18:01:33 -04:00
userServices.easyeffects = {
enable = true;
preset = "LoudnessEqualizer.json";
};
2024-03-28 19:52:15 -04:00
};
}