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