From dab914c54426994f83712a1a695fb52873f1f82a Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Sat, 30 Dec 2023 20:44:51 +0100 Subject: [PATCH] Add mrmeeseeks configuration --- hosts/mrmeeseeks/hardware-configuration.nix | 6 ++++-- hosts/mrmeeseeks/home-config.nix | 24 +++++++++++++++++++++ hosts/mrmeeseeks/nixos-config.nix | 4 ++++ 3 files changed, 32 insertions(+), 2 deletions(-) create mode 100644 hosts/mrmeeseeks/home-config.nix create mode 100644 hosts/mrmeeseeks/nixos-config.nix diff --git a/hosts/mrmeeseeks/hardware-configuration.nix b/hosts/mrmeeseeks/hardware-configuration.nix index 82810dc..02b4584 100644 --- a/hosts/mrmeeseeks/hardware-configuration.nix +++ b/hosts/mrmeeseeks/hardware-configuration.nix @@ -64,8 +64,10 @@ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.amd.updateMicrocode = true; - hardware.opengl.driSupport = true; - hardware.opengl.driSupport32Bit = true; + hardware.opengl = { + driSupport = true; + driSupport32Bit = true; + }; hardware.bluetooth.enable = true; hardware.xpadneo.enable = true; } diff --git a/hosts/mrmeeseeks/home-config.nix b/hosts/mrmeeseeks/home-config.nix new file mode 100644 index 0000000..6e3ef2c --- /dev/null +++ b/hosts/mrmeeseeks/home-config.nix @@ -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; + }; + }; +} diff --git a/hosts/mrmeeseeks/nixos-config.nix b/hosts/mrmeeseeks/nixos-config.nix new file mode 100644 index 0000000..2ccfb7e --- /dev/null +++ b/hosts/mrmeeseeks/nixos-config.nix @@ -0,0 +1,4 @@ +{ ... }: { + config.modules.gaming.steam.enable = true; + config.modules.hardware.laptop.enable = false; +}