summaryrefslogtreecommitdiff
path: root/machines/zenbook
diff options
context:
space:
mode:
Diffstat (limited to 'machines/zenbook')
-rw-r--r--machines/zenbook/configuration.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/machines/zenbook/configuration.nix b/machines/zenbook/configuration.nix
index d1e57c9..b1135a9 100644
--- a/machines/zenbook/configuration.nix
+++ b/machines/zenbook/configuration.nix
@@ -2,7 +2,7 @@
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running `nixos-help`).
-{ config, ... }:
+{ config, pkgs, ... }:
{
imports = [
@@ -22,6 +22,10 @@
};
environment.shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/zenbook/configuration.nix"'';
+ environment.systemPackages = with pkgs; [
+ # for battery utils
+ acpi
+ ];
services.xserver.displayManager.sddm = {
enableHidpi = true;