nix-config/hosts/common/common.nix
smayzy fd8e52d6d6
All checks were successful
nixos config pipeline / show-flake (push) Successful in 31s
nixos config pipeline / deploy (push) Successful in 1m21s
add ardour and remove kde on desktop1
2026-03-29 11:19:14 +02:00

36 lines
509 B
Nix

{
inputs,
pkgs,
overlays,
...
}:
{
imports = [
inputs.home-manager.nixosModules.home-manager
../../modules/nix/default.nix
];
nixpkgs.overlays = overlays;
boot.supportedFilesystems = [ "nfs" ];
users.users.smayzy = {
homeMode = "710";
isNormalUser = true;
description = "smayzy";
extraGroups = [
"networkmanager"
"wheel"
"wireshark"
"dialout"
"audio"
];
};
environment.systemPackages = with pkgs; [
home-manager
];
}