chore: Remove redundant container configuration

Not needed due to the imports, although useful to remember that these
options would typically be necessary in a raw implementation.
This commit is contained in:
Donovan Glover 2024-04-05 08:13:54 -04:00
parent e739239542
commit ae85377a72
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,4 +1,4 @@
{ pkgs, lib, config, ... }:
{ lib, config, ... }:
let
inherit (config.modules.system) username;
@ -46,10 +46,6 @@ in
};
};
environment.systemPackages = with pkgs; [
kitty
];
users = {
allowNoPasswordLogin = true;
@ -59,8 +55,5 @@ in
};
};
services.xserver.enable = true;
hardware.opengl.enable = true;
system.stateVersion = "22.11";
}