28 lines
533 B
Nix
28 lines
533 B
Nix
{ ... }:
|
|
|
|
{
|
|
# Define a user account. Don't forget to set a password with 'passwd'.
|
|
users.users.matt = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "input" "uinput" "adm" "mlocate" "video" "libvirtd" ];
|
|
};
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
# TODO: use hm for tmux
|
|
home-manager.users = {
|
|
matt = {
|
|
|
|
imports = [
|
|
./dconf.nix
|
|
./theme.nix
|
|
./hyprland.nix
|
|
./dotfiles.nix
|
|
./packages.nix
|
|
./firefox/main.nix
|
|
];
|
|
|
|
home.stateVersion = "23.05";
|
|
};
|
|
};
|
|
}
|