summaryrefslogtreecommitdiff
path: root/hosts/kaworu
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/kaworu')
-rw-r--r--hosts/kaworu/default.nix28
-rw-r--r--hosts/kaworu/hardware.nix7
2 files changed, 14 insertions, 21 deletions
diff --git a/hosts/kaworu/default.nix b/hosts/kaworu/default.nix
index 940f3fc..25c16c7 100644
--- a/hosts/kaworu/default.nix
+++ b/hosts/kaworu/default.nix
@@ -1,24 +1,23 @@
# Kaworu
# System configuration for my desktop
-_: {
+{lib, ...}: {
imports = [
./hardware.nix
];
# options
hostName = "kaworu";
- monitors = [
- {
- name = "HDMI-A-1";
- scale = 1.0;
- }
+ monitors = with 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,19 @@ _: {
hyprland.enable = true;
ly.enable = true;
};
- development = {
- c.enable = true;
- rust.enable = true;
- web.enable = true;
- };
gaming = {
+ enable = true;
+ openrgb.enable = true;
homestuck.enable = true;
minecraft.enable = true;
steam.enable = true;
};
+ bootloader = {
+ limine.enable = true;
+ };
# modules
- bluetooth = true;
- network = true;
+ amdgpu.enable = true;
+ bluetooth.enable = true;
+ network.enable = true;
}
diff --git a/hosts/kaworu/hardware.nix b/hosts/kaworu/hardware.nix
index c3c9a57..0f2d277 100644
--- a/hosts/kaworu/hardware.nix
+++ b/hosts/kaworu/hardware.nix
@@ -1,11 +1,4 @@
_: {
- # bootloader
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi = {
- canTouchEfiVariables = true;
- efiSysMountPoint = "/boot/efi";
- };
-
# kernel modules
boot.initrd.availableKernelModules = [
"xhci_pci"