mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 21:33:11 +01:00
24 lines
736 B
Nix
24 lines
736 B
Nix
{ config, ... }:
|
|
{
|
|
imports = [ ./fixes.nix ];
|
|
nixpkgs.config.allowUnfree = true;
|
|
users.users.rouven = {
|
|
description = "Rouven Seifert";
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "video" "dialout" "libvirtd" "tss" "input" "wireshark" "etherape" "docker" ];
|
|
initialHashedPassword = "$6$X3XERQv28Nt1UUT5$MjdMBDuXyEwexkuKqmNFweez69q4enY5cjMXSbBxOc6Bq7Fhhp7OqmCm02k3OGjoZFXzPV9ZHuMSGKZOtwYIk1";
|
|
};
|
|
home-manager.useUserPackages = true;
|
|
home-manager.useGlobalPkgs = true;
|
|
|
|
home-manager.users.rouven = { ... }: {
|
|
imports = [ ./modules ./options ];
|
|
|
|
config = {
|
|
home.username = "rouven";
|
|
home.homeDirectory = "/home/rouven";
|
|
home.stateVersion = config.system.stateVersion;
|
|
};
|
|
};
|
|
}
|