summaryrefslogtreecommitdiff
path: root/modules/nixos/profiles
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/profiles')
-rw-r--r--modules/nixos/profiles/dev/default.nix4
-rw-r--r--modules/nixos/profiles/headful.nix5
2 files changed, 5 insertions, 4 deletions
diff --git a/modules/nixos/profiles/dev/default.nix b/modules/nixos/profiles/dev/default.nix
index 83d41c0..8cb2356 100644
--- a/modules/nixos/profiles/dev/default.nix
+++ b/modules/nixos/profiles/dev/default.nix
@@ -8,6 +8,10 @@
with lib; let
cfg = config.nixfiles.modules.profiles.dev.default;
in {
+ imports = [
+ ./containers.nix
+ ];
+
config = mkIf cfg.enable {
hm.home.language = {
collate = "C";
diff --git a/modules/nixos/profiles/headful.nix b/modules/nixos/profiles/headful.nix
index d15f004..2d37b47 100644
--- a/modules/nixos/profiles/headful.nix
+++ b/modules/nixos/profiles/headful.nix
@@ -77,10 +77,7 @@ in {
psd.enable = true;
};
- environment.systemPackages = with pkgs; [
- ethtool
- nethogs
- ];
+ environment.systemPackages = with pkgs; [lm_sensors];
my.extraGroups = ["audio" "video" "input"];
};