add host Remilia

This commit is contained in:
2021-05-31 02:48:14 +05:30
parent 8952fafe65
commit 02fa695a0f
25 changed files with 98 additions and 32 deletions

39
hosts/personal/stuff.nix Normal file
View File

@@ -0,0 +1,39 @@
{config, agenix, pkgs, ... }:
{
time.timeZone = "Asia/Kolkata";
environment = {
sessionVariables = {
QT_X11_NO_MITSHM="1";
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";
};
fonts.fonts = with pkgs; [
fira-mono
font-awesome
vistafonts
noto-fonts-cjk
];
users.users.natto = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/natto";
extraGroups = [ "wheel" "adbusers" ];
};
}