This commit is contained in:
2022-02-08 19:28:32 +05:30
commit 90cd68c5a0
5 changed files with 310 additions and 0 deletions

24
stuff.nix Normal file
View File

@@ -0,0 +1,24 @@
{lib, config, agenix, pkgs, ...}:
{
fonts.fonts = with pkgs; [
fira-mono
lohit-fonts.devanagari
lohit-fonts.gurmukhi
nerdfonts
font-awesome
monoid
office-code-pro
noto-fonts-cjk
];
users.users.dumball = {
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/dumball";
extraGroups = [ "wheel" "adbusers" "video" "libvirtd" "docker" ];
};
gtk.iconCache.enable = true;
}