summaryrefslogtreecommitdiff
path: root/hosts/kaworu/default.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-23 22:58:21 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-23 22:58:21 -0400
commitaf45f6195844ba13fd1a8dced38d226e99ec3c6b (patch)
treee87ce833e737500b005185919ef2f1becbaf2e19 /hosts/kaworu/default.nix
parentmove global cfg options into modules (remove /config) (diff)
downloaddotfiles-nix-af45f6195844ba13fd1a8dced38d226e99ec3c6b.tar.gz
dotfiles-nix-af45f6195844ba13fd1a8dced38d226e99ec3c6b.tar.bz2
dotfiles-nix-af45f6195844ba13fd1a8dced38d226e99ec3c6b.zip
fix hosts
Diffstat (limited to 'hosts/kaworu/default.nix')
-rw-r--r--hosts/kaworu/default.nix27
1 files changed, 25 insertions, 2 deletions
diff --git a/hosts/kaworu/default.nix b/hosts/kaworu/default.nix
index 2ac1186..a8f54c5 100644
--- a/hosts/kaworu/default.nix
+++ b/hosts/kaworu/default.nix
@@ -10,9 +10,8 @@ inputs.nixpkgs.lib.nixosSystem rec {
specialArgs = {inherit inputs;};
modules = [
options
- ../../config
../../home
- ../../programs
+ ../../modules
../../system
{
imports = [
@@ -27,6 +26,30 @@ inputs.nixpkgs.lib.nixosSystem rec {
scale = 1.0;
}
];
+
+ # modules
+ desktop = {
+ enable = true;
+ astal = true;
+ firefox = true;
+ hyprland = true;
+ hyprlock = true;
+ hypridle = true;
+ hyprpaper = true;
+ };
+ development = {
+ c = true;
+ rust = true;
+ web = true;
+ };
+ gaming = {
+ homestuck = true;
+ minecraft = true;
+ steam = true;
+ };
+ terminal = {
+ kitty = true;
+ };
}
];
}