Files
dotfiles/Satori/stuff.nix
2021-05-14 08:00:37 +05:30

38 lines
657 B
Nix

{lib, config, agenix, pkgs, ... }:
{
imports = [
./Stuff/fonts.nix
./Stuff/users.nix
./Stuff/services.nix
];
time.timeZone = "Asia/Kolkata";
environment = {
sessionVariables = {
QT_X11_NO_MITSHM="1";
EDITOR = "nvim";
QT_QPA_PLATFORMTHEME = "gtk3";
};
};
security={
sudo.enable = false;
doas = {
enable = true;
extraRules = [
{
users = [ "natto" ];
keepEnv = true;
persist = true;
}
];
};
};
nix.gc = {
automatic = false;
dates = "20:15";
};
nixpkgs.config = {
allowUnfree = true;
allowBroken = true;
};
}