summaryrefslogtreecommitdiff
path: root/modules/nixos/profiles/dev/default.nix
blob: 83d41c0a09144f47f31c23046cead641a3f4d173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  lib,
  pkgs,
  this,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.profiles.dev.default;
in {
  config = mkIf cfg.enable {
    hm.home.language = {
      collate = "C";
      messages = "C";
    };

    my.extraGroups = ["kvm"];
  };
}