Add mrmeeseeks configuration

This commit is contained in:
Yorick Barbanneau 2023-12-30 20:44:51 +01:00
parent bdbc0e7614
commit dab914c544
3 changed files with 32 additions and 2 deletions

View file

@ -64,8 +64,10 @@
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = true; hardware.cpu.amd.updateMicrocode = true;
hardware.opengl.driSupport = true; hardware.opengl = {
hardware.opengl.driSupport32Bit = true; driSupport = true;
driSupport32Bit = true;
};
hardware.bluetooth.enable = true; hardware.bluetooth.enable = true;
hardware.xpadneo.enable = true; hardware.xpadneo.enable = true;
} }

View file

@ -0,0 +1,24 @@
{ ... }: {
config.modules = {
application = {
zathura.enable = true;
};
cli = {
neovim.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;
};
};
}

View file

@ -0,0 +1,4 @@
{ ... }: {
config.modules.gaming.steam.enable = true;
config.modules.hardware.laptop.enable = false;
}