2024-05-24 21:33:00 +02:00
|
|
|
{ config, pkgs, ... }:
|
2024-04-04 01:41:19 +02:00
|
|
|
|
|
|
|
{
|
2024-04-05 14:36:20 +02:00
|
|
|
imports = [
|
|
|
|
../../packages/sets/communication.nix
|
|
|
|
../../packages/sets/games.nix
|
2024-05-24 21:33:00 +02:00
|
|
|
./persist.nix
|
|
|
|
./packages/stylix.nix
|
|
|
|
./packages/nh.nix
|
|
|
|
./packages/zsh/zsh.nix
|
2024-04-05 14:36:20 +02:00
|
|
|
];
|
|
|
|
|
2024-04-04 01:41:19 +02:00
|
|
|
users.users.hu = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [ "wheel" ];
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
hashedPasswordFile = "/nix/config/secrets/hu/pass";
|
|
|
|
};
|
|
|
|
|
2024-05-24 21:33:00 +02:00
|
|
|
# TODO: Figure out a way to run scripts with the user session as a systemd service
|
2024-04-04 13:49:19 +02:00
|
|
|
|
2024-05-24 21:33:00 +02:00
|
|
|
home-manager = {
|
|
|
|
useGlobalPkgs = true;
|
|
|
|
useUserPackages = true;
|
|
|
|
users.hu = {
|
|
|
|
home.username = "hu";
|
|
|
|
home.homeDirectory = "/home/hu";
|
|
|
|
home.stateVersion = config.system.stateVersion;
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
./packages/zsh/zsh-home.nix
|
|
|
|
./packages/git.nix
|
2024-05-30 19:41:19 +02:00
|
|
|
./packages/gtk.nix
|
2024-05-24 21:33:00 +02:00
|
|
|
# ./packages/tmux.nix
|
|
|
|
./packages/hyprland.nix
|
|
|
|
./packages/foot.nix
|
|
|
|
./packages/firefox.nix
|
|
|
|
./packages/rofi.nix
|
|
|
|
./packages/nvim/neovim.nix
|
2024-05-26 01:02:14 +02:00
|
|
|
./packages/ags/ags.nix
|
2024-05-24 21:33:00 +02:00
|
|
|
];
|
|
|
|
};
|
2024-04-04 13:49:19 +02:00
|
|
|
};
|
2024-04-04 01:41:19 +02:00
|
|
|
}
|
2024-05-24 21:33:00 +02:00
|
|
|
|