aboutsummaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
authorAdrian Kummerlaender2022-10-16 20:59:27 +0200
committerAdrian Kummerlaender2022-10-16 21:00:28 +0200
commit28667b7c6f3e187a3b550d9d62ac1e503c054a92 (patch)
tree1537dab68235d5fd365932ac530922ff65a68014 /host
parentfc4fe90133b063fd95c8c2540b0272405e0eabb7 (diff)
downloadnixos_home-28667b7c6f3e187a3b550d9d62ac1e503c054a92.tar
nixos_home-28667b7c6f3e187a3b550d9d62ac1e503c054a92.tar.gz
nixos_home-28667b7c6f3e187a3b550d9d62ac1e503c054a92.tar.bz2
nixos_home-28667b7c6f3e187a3b550d9d62ac1e503c054a92.tar.lz
nixos_home-28667b7c6f3e187a3b550d9d62ac1e503c054a92.tar.xz
nixos_home-28667b7c6f3e187a3b550d9d62ac1e503c054a92.tar.zst
nixos_home-28667b7c6f3e187a3b550d9d62ac1e503c054a92.zip
Add idefix config, optional xmonad, deprecate hidpi option
Diffstat (limited to 'host')
-rw-r--r--host/asterix.nix2
-rw-r--r--host/athena.nix3
-rw-r--r--host/hephaestus.nix3
-rw-r--r--host/idefix.nix11
-rw-r--r--host/majestix.nix3
-rw-r--r--host/obelix.nix7
6 files changed, 15 insertions, 14 deletions
diff --git a/host/asterix.nix b/host/asterix.nix
index 830a894..2d1e19d 100644
--- a/host/asterix.nix
+++ b/host/asterix.nix
@@ -11,6 +11,4 @@
home.packages = with pkgs; [
acpi
];
-
- custom.hidpi = false;
}
diff --git a/host/athena.nix b/host/athena.nix
index 8fc7357..b5e9b75 100644
--- a/host/athena.nix
+++ b/host/athena.nix
@@ -3,6 +3,7 @@
{
imports = [
../gui/default.nix
+ ../gui/xmonad.nix
../gui/networkmanager.nix
../gui/stalonetray.nix
../gui/redshift.nix
@@ -14,6 +15,4 @@
arandr
blueman
];
-
- custom.hidpi = false;
}
diff --git a/host/hephaestus.nix b/host/hephaestus.nix
index e7c9514..9410f15 100644
--- a/host/hephaestus.nix
+++ b/host/hephaestus.nix
@@ -3,12 +3,11 @@
{
imports = [
../gui/default.nix
+ ../gui/xmonad.nix
../gui/networkmanager.nix
../gui/stalonetray.nix
];
- custom.hidpi = false;
-
services.kdeconnect = {
enable = true;
};
diff --git a/host/idefix.nix b/host/idefix.nix
new file mode 100644
index 0000000..484f643
--- /dev/null
+++ b/host/idefix.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+
+{
+ imports = [
+ ../gui/default.nix
+ ];
+
+ home.packages = with pkgs; [
+ gnome3.gnome-tweaks
+ ];
+}
diff --git a/host/majestix.nix b/host/majestix.nix
index 26a17ea..f73a1c7 100644
--- a/host/majestix.nix
+++ b/host/majestix.nix
@@ -3,7 +3,6 @@
{
imports = [
../gui/default.nix
+ ../gui/xmonad.nix
];
-
- custom.hidpi = false;
}
diff --git a/host/obelix.nix b/host/obelix.nix
index f4717e8..35bf141 100644
--- a/host/obelix.nix
+++ b/host/obelix.nix
@@ -3,10 +3,9 @@
{
imports = [
../gui/default.nix
+ ../gui/xmonad.nix
];
- custom.hidpi = false;
-
custom.tasks = {
"compustream_shell" = {
description = "compustream dev shell";
@@ -14,8 +13,4 @@
type = "local-shell";
};
};
-
- services.kdeconnect = {
- enable = true;
- };
}