summaryrefslogtreecommitdiff
path: root/machines
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2023-12-16 00:37:49 -0700
committerDevin Finlinson <devin.finlinson@pm.me>2023-12-16 00:37:49 -0700
commit9b7bc5a664bbeec981a2bbab1f591c648182c0cf (patch)
tree0f755bd7ba961300a23379400809226cd41bc7d6 /machines
parentb71a6fc84c33210ce4b2ccf49e44c0762d853641 (diff)
parentd8fb0b18a2a51d83bead5281a59bea88f4f06956 (diff)
Merge branch 'master' of ssh://git.wormcar.gay:2200/devinf/nix-config
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
];