summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
Diffstat (limited to 'machines')
-rw-r--r--machines/zenbook/configuration.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/machines/zenbook/configuration.nix b/machines/zenbook/configuration.nix
index 1643c7f..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,7 +22,7 @@
};
environment.shellInit = ''export NIXPATH="/nix/var/nix/profiles/per-user/$USER/channels:nixos-config=/etc/nixos/machines/zenbook/configuration.nix"'';
- environment.systemPackages = with pkgs: [
+ environment.systemPackages = with pkgs; [
# for battery utils
acpi
];