updates
This commit is contained in:
parent
63bbeaca3b
commit
ce01469113
37 changed files with 1621 additions and 384 deletions
|
|
@ -6,6 +6,7 @@
|
|||
}: {
|
||||
# Enable sound with pipewire.
|
||||
hardware.pulseaudio.enable = false;
|
||||
hardware.alsa.enablePersistence = true;
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue