nixos-config/users/rouven/default.nix

24 lines
727 B
Nix
Raw Normal View History

2023-05-19 11:42:43 +02:00
{ config, ... }:
2022-12-19 15:45:59 +01:00
{
2023-01-21 19:03:24 +01:00
imports = [ ./fixes.nix ];
2022-12-19 15:45:59 +01:00
nixpkgs.config.allowUnfree = true;
users.users.rouven = {
2023-05-31 13:23:49 +02:00
description = "Rouven Seifert";
2022-12-19 15:45:59 +01:00
isNormalUser = true;
2024-01-22 01:07:30 +01:00
extraGroups = [ "wheel" "video" "dialout" "libvirtd" "tss" "input" "wireshark" "etherape" ];
2023-05-20 13:20:05 +02:00
initialHashedPassword = "$6$X3XERQv28Nt1UUT5$MjdMBDuXyEwexkuKqmNFweez69q4enY5cjMXSbBxOc6Bq7Fhhp7OqmCm02k3OGjoZFXzPV9ZHuMSGKZOtwYIk1";
2022-12-19 15:45:59 +01:00
};
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
2023-05-19 11:42:43 +02:00
home-manager.users.rouven = { ... }: {
2023-06-15 21:01:17 +02:00
imports = [ ./modules ./options ];
2022-12-19 15:45:59 +01:00
config = {
2022-12-19 19:30:32 +01:00
home.username = "rouven";
home.homeDirectory = "/home/rouven";
2022-12-19 15:45:59 +01:00
home.stateVersion = config.system.stateVersion;
};
};
}