mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 11:39:19 +00:00
finally on flake parts
just need to remove fup now
This commit is contained in:
parent
3b4057b366
commit
3c48de49f6
20 changed files with 206 additions and 123 deletions
|
|
@ -2,10 +2,12 @@
|
|||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
self,
|
||||
...
|
||||
}: let
|
||||
inherit (inputs.self.nixosModules) keys;
|
||||
#inherit (self.nixosModules) keys;
|
||||
in {
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
c.services.mesh = {
|
||||
enable = true;
|
||||
exitNode = false;
|
||||
|
|
@ -13,7 +15,7 @@ in {
|
|||
};
|
||||
c.services.remote-deploy = {
|
||||
enable = false;
|
||||
keys = keys.c;
|
||||
keys = config.keys.c;
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/London";
|
||||
|
|
@ -22,7 +24,7 @@ in {
|
|||
users.users.c = {
|
||||
isNormalUser = true;
|
||||
extraGroups = ["wheel" "networkmanager" "libvirtd" "dialout"];
|
||||
openssh.authorizedKeys.keys = keys.c;
|
||||
openssh.authorizedKeys.keys = config.keys.c;
|
||||
shell = pkgs.fish;
|
||||
packages = with pkgs; [];
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue