Move base.nix and me.nix from roles to fragments

This commit is contained in:
NullBite 2023-12-28 02:47:00 -05:00
parent 1f85bc2871
commit 55bb978848
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A
2 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@
# networking.hostName = "nixos"; # Define your hostname.
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
networking.networkmanager.enable = lib.mkDefault true; # Easiest to use and most distros use this by default.
# List packages installed in system profile. To search, run:
# $ nix search wget
@ -29,8 +29,8 @@
];
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
enable = lib.mkDefault true;
enableSSHSupport = lib.mkDefault true;
};
}