nix/hosts/mrmeeseeks/home-config.nix
Yorick Barbanneau 15f02d84e2 chore: update mrMeeseeks configuration
To conform new configuration options and module oranization
2024-05-08 22:54:32 +02:00

43 lines
1 KiB
Nix

{ ... }: {
config.modules = {
application = {
gnupg.enable = true;
zathura.enable = true;
foot.enable = true;
};
cli = {
direnv.enable = true;
ghq.enable = true;
git.enable = true;
neovim.enable = true;
utils.enable = true;
vifm.enable = true;
zsh.enable = true;
};
video = {
kdenlive.enable = false;
mpv.enable = true;
};
web.firefox.enable = true;
web.qutebrowser.enable = true;
web.webcord.enable = true;
gaming.lutris.enable = true;
desktop.sway = {
enable = true;
kanshi = false;
wallpapers.lockscreen = "${./files/lockscreen.png}";
wallpapers.desktop = "${./files/wallpaper.jpg} center #000000";
waybar = {
laptop = false;
gpuThermal = {
enable = true;
hmonPath = "/sys/class/hwmon/hwmon1/temp1_input";
};
cpuThermal = {
hwmonPathAbs = "/sys/devices/pci0000:00/0000:00:18.3/hwmon/";
inputFilename = "temp3_input";
};
};
};
};
}