Files
nixos/modules/linux.nix
T

20 lines
322 B
Nix
Raw Normal View History

2022-09-07 11:28:09 -05:00
{ 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;
};
}