This commit is contained in:
gwg313 2024-11-25 11:57:38 -05:00
parent 63bbeaca3b
commit ce01469113
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
37 changed files with 1621 additions and 384 deletions

View file

@ -6,6 +6,7 @@
}: {
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
hardware.alsa.enablePersistence = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;

View file

@ -12,19 +12,19 @@
networking.wireless.enable = true;
environment.systemPackages = with pkgs; [wpa_supplicant_gui];
networking.wireless.userControlled.enable = true;
networking.wireless.environmentFile = config.sops.secrets."wireless.env".path;
networking.wireless.secretsFile = config.sops.secrets."wireless.env".path;
networking.wireless.networks = {
"@home_uuid@" = {
psk = "@home_psk@";
"Tycho Station" = {
pskRaw = "ext:home_psk";
priority = 99;
};
"@school_uuid@" = {
"CU-Wireless" = {
auth = ''
key_mgmt=WPA-EAP
eap=PEAP
phase2="auth=MSCHAPV2"
identity="@school_identity@"
password="@school_password@"
identity="glengoodwin"
password=ext:school_password
'';
priority = 89;
};
@ -34,8 +34,8 @@
key_mgmt=WPA-EAP
eap=PEAP
phase2="auth=MSCHAPV2"
identity="@eduroam_identity@"
password="@school_password@"
identity="ext:eduroam_identity"
password="ext:school_password"
'';
priority = 79;
};

View file

@ -1,8 +1,9 @@
{pkgs, ...}: {
stylix = {
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-macchiato.yaml";
# base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-macchiato.yaml";
base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-latte.yaml";
# image = ./wallpaper.jpg;
image = ../../wallpapers/nix-black-4k.png;
image = ../../wallpapers/nixos-wallpaper-catppuccin-latte.png;
#polarity = "dark";
autoEnable = true;
enable = true;