mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
format all
This commit is contained in:
parent
091cfbdf96
commit
bcf0553529
40 changed files with 271 additions and 140 deletions
|
|
@ -2,7 +2,8 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}:
|
||||
{
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
c.services.mesh = {
|
||||
enable = true;
|
||||
|
|
@ -22,7 +23,10 @@
|
|||
|
||||
users.users.media = {
|
||||
isNormalUser = true;
|
||||
extraGroups = ["wheel" "multimedia"];
|
||||
extraGroups = [
|
||||
"wheel"
|
||||
"multimedia"
|
||||
];
|
||||
openssh.authorizedKeys.keys = config.keys.c;
|
||||
packages = with pkgs; [
|
||||
tree
|
||||
|
|
@ -30,7 +34,7 @@
|
|||
];
|
||||
};
|
||||
|
||||
nix.settings.trusted-users = ["media"];
|
||||
nix.settings.trusted-users = [ "media" ];
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue