This commit is contained in:
2025-08-04 17:50:57 +03:00
parent 889df388f8
commit aac4567c02
3 changed files with 67 additions and 38 deletions
+22 -22
View File
@@ -7,33 +7,33 @@
{
imports = with inputs; [
./essentials
./users.nix
(import ./options.nix { inherit lib inputs; }) # Options
# Flake modules
home-manager.nixosModules.home-manager # home-manager module
nix-index-database.nixosModules.nix-index # nix-index module
];
# defines global user
config.users = {
users = {
"${config.device.username}" = {
isNormalUser = true;
description = "Jor Oqyude";
initialPassword = "1234";
extraGroups = [
"beets"
"audio"
"disk"
"gamemode"
"libvirtd"
"networkmanager"
"pipewire"
"qemu-libvirtd"
"wheel"
"immich"
];
};
};
};
# config.users = {
# users = {
# "${config.xlib.device.username}" = {
# isNormalUser = true;
# description = "Jor Oqyude";
# initialPassword = "1234";
# extraGroups = [
# "beets"
# "audio"
# "disk"
# "gamemode"
# "libvirtd"
# "networkmanager"
# "pipewire"
# "qemu-libvirtd"
# "wheel"
# "immich"
# ];
# };
# };
# };
}