diff --git a/home/graphical/firefox/default.nix b/home/graphical/firefox/default.nix index 232a178..e0ff9be 100644 --- a/home/graphical/firefox/default.nix +++ b/home/graphical/firefox/default.nix @@ -9,8 +9,8 @@ lib.mkIf osConfig.programs.firefox.enable { enable = true; # Installed by nixpkgs module package = null; - profiles.nico = { - name = "Nico"; + profiles.ny = { + name = "ny"; isDefault = true; search = { default = "DuckDuckGo"; diff --git a/home/graphical/thunderbird/default.nix b/home/graphical/thunderbird/default.nix index c646a95..4759f45 100644 --- a/home/graphical/thunderbird/default.nix +++ b/home/graphical/thunderbird/default.nix @@ -29,7 +29,7 @@ # 35 = Received "mailnews.default_sort_type" = 18; }; - profiles.nico = { + profiles.ny = { isDefault = true; }; }; diff --git a/home/graphical/vscode/default.nix b/home/graphical/vscode/default.nix index 0b80f0a..94563cf 100644 --- a/home/graphical/vscode/default.nix +++ b/home/graphical/vscode/default.nix @@ -15,7 +15,7 @@ lib.mkIf config.programs.vscode.enable { ]; userSettings = { "update.mode" = "none"; - "idf.espIdfPath" = "/home/nico/esp/v5.2.2/esp-idf"; + "idf.espIdfPath" = "/home/ny/esp/v5.2.2/esp-idf"; }; }; } diff --git a/hosts/marr/configuration.nix b/hosts/marr/configuration.nix index f717087..13ff0c9 100644 --- a/hosts/marr/configuration.nix +++ b/hosts/marr/configuration.nix @@ -47,7 +47,7 @@ }; }; - age.identityPaths = [ "/home/nico/.ssh/id_ed25519" ]; + age.identityPaths = [ "/home/ny/.ssh/id_ed25519" ]; programs = { dconf.enable = true; diff --git a/modules/secrets.nix b/modules/secrets.nix index d349f96..c2643c9 100644 --- a/modules/secrets.nix +++ b/modules/secrets.nix @@ -1,6 +1,6 @@ { age.secrets.rustypaste = { file = ../secrets/rustypaste.age; - owner = "nico"; + owner = "ny"; }; } diff --git a/modules/system/audio.nix b/modules/system/audio.nix index 6b8bfda..1cdbd4f 100644 --- a/modules/system/audio.nix +++ b/modules/system/audio.nix @@ -2,8 +2,10 @@ # Enables wireplumber automatically services.pipewire = { enable = true; - alsa.enable = true; - alsa.support32Bit = true; + alsa = { + enable = true; + support32Bit = true; + }; pulse.enable = true; }; } diff --git a/parts/lib/functions.nix b/parts/lib/functions.nix index 6265141..c14fb82 100644 --- a/parts/lib/functions.nix +++ b/parts/lib/functions.nix @@ -30,7 +30,7 @@ ] ++ extraModules; specialArgs = { inherit inputs self; - username = "nico"; + username = "ny"; }; }; }