From 350bc61eb206424bd9992abcf0ede1296bcf32a0 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Wed, 27 Dec 2023 00:29:15 +0100 Subject: [PATCH] Apply new configurations modules to Luci --- hosts/luci/home-config.nix | 12 ++++++++++++ hosts/luci/nixos-config.nix | 4 ++++ 2 files changed, 16 insertions(+) create mode 100644 hosts/luci/home-config.nix create mode 100644 hosts/luci/nixos-config.nix diff --git a/hosts/luci/home-config.nix b/hosts/luci/home-config.nix new file mode 100644 index 0000000..e94de85 --- /dev/null +++ b/hosts/luci/home-config.nix @@ -0,0 +1,12 @@ +{ ... }: { + config.modules = { + video.kdenlive.enable = false; + web.qutebrowser.enable = true; + web.webcord.enable = true; + gaming.lutris.enable = false; + desktop.sway = { + enable = true; + kanshi = true; + }; + }; +} diff --git a/hosts/luci/nixos-config.nix b/hosts/luci/nixos-config.nix new file mode 100644 index 0000000..909c4f9 --- /dev/null +++ b/hosts/luci/nixos-config.nix @@ -0,0 +1,4 @@ +{ ... }: { + config.modules.gaming.steam.enable = false; + config.modules.hardware.laptop.enable = true; +}