small changes

This commit is contained in:
Victor Ișan 2026-01-27 14:28:42 +01:00
parent 9e52c0ac72
commit 5cfcbffafb
3 changed files with 6 additions and 7 deletions

View File

@ -19,16 +19,11 @@
specialArgs = { inherit release mainDisk myUser; };
modules = [
disko.nixosModules.disko
./disko/btrfs-legacy.nix
./hosts/isengard.nix
./modules/base.nix
./modules/docker.nix
({ ... }: {
disko.devices = import ./disko/btrfs-legacy.nix {
inherit mainDisk;
};
})
];
};
};

View File

@ -16,6 +16,10 @@
];
};
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOiNyGO4RAxSdxvn2ZIBZ2Ze4iVVMrBNmu/V9JO70PoT victor@battleship"
];
networking.useDHCP = true;
services.openssh = {

View File

@ -1,7 +1,7 @@
{ config, myUser, ... }:
{
users.users.myUser.extraGroups = [ "docker" ];
users.users.${myUser}.extraGroups = [ "docker" ];
virtualisation.docker = {
storageDriver = "btrfs";