Compare commits
2 commits
a5dee47f5b
...
32b7a34b6f
Author | SHA1 | Date | |
---|---|---|---|
Victor Mignot | 32b7a34b6f | ||
Victor Mignot | 75f0cb6112 |
|
@ -65,7 +65,9 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
lixModules.${config.nixpkgs}.nixosModules.default
|
||||
(
|
||||
if (config.system == "x86_64-linux") then lixModules.${config.nixpkgs}.nixosModules.default else { }
|
||||
)
|
||||
./configurations/${name}
|
||||
(if config.enableHomeManager then home-manager.nixosModules.home-manager else { })
|
||||
(if (config.system == "x86_64-linux") then lanzaboote.nixosModules.lanzaboote else { })
|
||||
|
|
|
@ -1,9 +1,4 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
machineProps,
|
||||
...
|
||||
}:
|
||||
{ config, machineProps, ... }:
|
||||
let
|
||||
anyWiresharkUser =
|
||||
if machineProps.enableHomeManager then
|
||||
|
@ -15,11 +10,19 @@ let
|
|||
userUseWireshark = value: value.my.development.tools.networking.enable;
|
||||
in
|
||||
{
|
||||
config = {
|
||||
programs.wireshark.enable = anyWiresharkUser;
|
||||
config =
|
||||
{
|
||||
programs.wireshark.enable = anyWiresharkUser;
|
||||
|
||||
users.users = builtins.mapAttrs (name: value: {
|
||||
extraGroups = if (userUseWireshark value) then [ "wireshark" ] else [ ];
|
||||
}) config.home-manager.users;
|
||||
};
|
||||
}
|
||||
// (
|
||||
if machineProps.enableHomeManager then
|
||||
{
|
||||
users.users = builtins.mapAttrs (name: value: {
|
||||
extraGroups = if (userUseWireshark value) then [ "wireshark" ] else [ ];
|
||||
}) config.home-manager.users;
|
||||
}
|
||||
else
|
||||
{ }
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue