Files
dotfiles/hosts/satori/stuff.nix
natto1784 d49f0b473c misc changes
xmonad: added new layout+keybinds, removed useless code
neovim: minor changes
hosts/satori: changed kernel to zen again
home/services and home/programs: minor changes
overlays: changed picom src and other minor changes
2021-09-12 06:24:49 +05:30

48 lines
1.0 KiB
Nix

{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;
setEnv =[ "SSH_AUTH_SOCK" "PATH" "SHELL" "HOME" ];
}
];
};
};
fonts.fonts = with pkgs; [
fira-mono
noto-fonts-cjk
lohit-fonts.devanagari
lohit-fonts.gurmukhi
nerdfonts
font-awesome
];
users.users.natto = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/natto";
extraGroups = [ "wheel" "adbusers" "video" "libvirtd" ];
};
i18n = {
inputMethod = {
# enabled = "fcitx5";
# fcitx5.addons = with pkgs; [ fcitx5-m17n fcitx5-mozc ];
enabled = "fcitx";
fcitx.engines = with pkgs.fcitx-engines; [ m17n mozc ];
};
};
gtk.iconCache.enable = true;
}