52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./persist.nix
|
|
|
|
../modules/desktop/apps/communication.nix
|
|
../modules/desktop/apps/games.nix
|
|
../modules/desktop/apps/multimedia.nix
|
|
|
|
../modules/packages/nh.nix
|
|
../modules/packages/zsh.nix
|
|
../modules/packages/virt-manager.nix
|
|
];
|
|
|
|
environment.variables = {
|
|
ZDOTDIR = "/home/hu/.config/zsh";
|
|
EDITOR = "nvim";
|
|
};
|
|
|
|
users.users.hu = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "libvirtd" ];
|
|
shell = pkgs.zsh;
|
|
hashedPasswordFile = "/nix/config/secrets/pass";
|
|
};
|
|
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
users.hu = {
|
|
home.username = "hu";
|
|
home.homeDirectory = "/home/hu";
|
|
home.stateVersion = config.system.stateVersion;
|
|
|
|
imports = [
|
|
./packages/zsh.nix
|
|
./packages/git.nix
|
|
./packages/gtk.nix
|
|
./packages/hyprland.nix
|
|
./packages/foot.nix
|
|
./packages/firefox.nix
|
|
./packages/rofi.nix
|
|
./packages/fastfetch.nix
|
|
./packages/nvim.nix
|
|
./packages/waybar.nix
|
|
./packages/virt-manager.nix
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|