Files
dotfiles/hosts/satori/stuff.nix
2025-06-29 19:49:39 +05:30

44 lines
664 B
Nix

{
lib,
config,
pkgs,
...
}:
{
time.timeZone = "Asia/Kolkata";
environment.localBinInPath = true;
security = {
rtkit.enable = true;
polkit.enable = true;
sudo.enable = true;
};
console.useXkbConfig = true;
users.users.natto = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/natto";
extraGroups = [
"wheel"
"adbusers"
"video"
"libvirtd"
"docker"
"networkmanager"
"dialout"
];
};
virtualisation = {
waydroid.enable = true;
containers.cdi.dynamic.nvidia.enable = true;
podman = {
enable = true;
};
};
gtk.iconCache.enable = true;
}