264 current 2024-10-02 15:42:07 24.11.20240916.99dc878 6.11.0 *

This commit is contained in:
sadan 2024-10-02 15:42:18 -04:00
parent ad27d55764
commit 1d4904a4c9
No known key found for this signature in database
3 changed files with 27 additions and 3 deletions

View file

@ -15,6 +15,7 @@ in
./hardware-configuration.nix ./hardware-configuration.nix
../../common/modules/audio.nix ../../common/modules/audio.nix
../../common/modules/kde.nix ../../common/modules/kde.nix
../../common/users/meyer
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
]; ];
sops.defaultSopsFile = ../../secrets.yaml; sops.defaultSopsFile = ../../secrets.yaml;
@ -32,7 +33,6 @@ in
"audio" "audio"
"sound" "sound"
"video" "video"
"networkmanager"
"input" "input"
"tty" "tty"
"plugdev" "plugdev"
@ -63,7 +63,6 @@ in
networking.hostName = "nix-desktop-evo4b5"; # Define your hostname. networking.hostName = "nix-desktop-evo4b5"; # Define your hostname.
# Pick only one of the below networking options. # Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# Set your time zone. # Set your time zone.
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
@ -114,7 +113,6 @@ in
# networking.nameservers = ["10.0.0.97" "1.1.1.1"]; # networking.nameservers = ["10.0.0.97" "1.1.1.1"];
networking.nameservers = [ "10.0.0.97" ];
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -0,0 +1,9 @@
{ ... }:
let
NAME = "meyer";
in
{
imports = [
(import ../modules/networkManager.nix { inherit NAME; })
];
}

View file

@ -0,0 +1,17 @@
{ NAME }: { ... }: {
users = {
users = {
"${NAME}" = {
extraGroups = [
"networkmanager"
];
};
};
};
networking = {
networkmanager = {
enable = true;
};
nameservers = [ "1.1.1.1" "1.0.0.1" ];
};
}