summaryrefslogtreecommitdiff
path: root/hosts/kaworu
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-05-26 13:08:05 -0400
committerFreya Murphy <freya@freyacat.org>2026-05-26 13:08:05 -0400
commitcd6897dbf68b905b55e6f4ec73c28a2476fce3ac (patch)
tree3b57010dfeb8b4aea8ef2fec904b0529ccd0894e /hosts/kaworu
parent'cores' option is defunct (diff)
downloaddotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.tar.gz
dotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.tar.bz2
dotfiles-nix-cd6897dbf68b905b55e6f4ec73c28a2476fce3ac.zip
prepare kaworu host for new pc
Diffstat (limited to 'hosts/kaworu')
-rw-r--r--hosts/kaworu/default.nix24
1 files changed, 10 insertions, 14 deletions
diff --git a/hosts/kaworu/default.nix b/hosts/kaworu/default.nix
index 940f3fc..f20f400 100644
--- a/hosts/kaworu/default.nix
+++ b/hosts/kaworu/default.nix
@@ -1,24 +1,23 @@
# Kaworu
# System configuration for my desktop
-_: {
+{ inputs, ... }: {
imports = [
./hardware.nix
];
# options
hostName = "kaworu";
- monitors = [
- {
- name = "HDMI-A-1";
- scale = 1.0;
- }
+ monitors = with inputs.self.lib.monitors; [
+ asus
+ acer
];
# modules
apps = {
- astal.enable = true;
+ caelestia.enable = true;
hyprlock.enable = true;
kitty.enable = true;
+ obs.enable = true;
};
browsers = {
firefox.enable = true;
@@ -28,18 +27,15 @@ _: {
hyprland.enable = true;
ly.enable = true;
};
- development = {
- c.enable = true;
- rust.enable = true;
- web.enable = true;
- };
gaming = {
+ enable = true;
homestuck.enable = true;
minecraft.enable = true;
steam.enable = true;
};
# modules
- bluetooth = true;
- network = true;
+ amdgpu.enable = true;
+ bluetooth.enable = true;
+ network.enable = true;
}