aboutsummaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/asterix.nix3
-rw-r--r--host/athena.nix23
2 files changed, 24 insertions, 2 deletions
diff --git a/host/asterix.nix b/host/asterix.nix
index 925713c..1594c6f 100644
--- a/host/asterix.nix
+++ b/host/asterix.nix
@@ -9,8 +9,7 @@
home.packages = let
mypkgs = import (fetchTarball "https://pkgs.kummerlaender.eu/nixexprs.tar.gz") { };
in [
- # only asterix has a 3g modem
- mypkgs.modem-manager-gui
pkgs.networkmanager_dmenu
+ pkgs.acpi
];
}
diff --git a/host/athena.nix b/host/athena.nix
new file mode 100644
index 0000000..6ebe90d
--- /dev/null
+++ b/host/athena.nix
@@ -0,0 +1,23 @@
+{ pkgs, ... }:
+
+{
+ imports = [
+ ../gui/default.nix
+ ];
+
+ home.packages = with pkgs; [
+ networkmanager_dmenu
+ acpi
+ xorg.xbacklight
+ ];
+
+ xresources.extraConfig = ''
+ Xft.dpi: 160
+ Xft.autohint: 0
+ Xft.lcdfilter: lcddefault
+ Xft.hintstyle: hintfull
+ Xft.hinting: 1
+ Xft.antialias: 1
+ Xft.rgba: rgb
+ '';
+}