Continue to fix merge

This commit is contained in:
greg-compass
2022-09-07 11:28:09 -05:00
parent c048cc3fd6
commit 16e54a97b4
18 changed files with 54 additions and 315 deletions
+19
View File
@@ -0,0 +1,19 @@
{ config, lib, ... }:
let
cfg = config.greg.linux;
in with lib; {
options.greg.linux = mkEnableOption "This system is Linux";
config = mkIf cfg {
imports = [
./automatic/users.nix
];
system.stateVersion = "22.05";
# I am a fan of network manager, myself
networking.networkmanager.enable = true;
};
}