this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mbedtls fix and some cleanin

+10 -5
+10 -5
nixos/configuration_os.nix
··· 44 44 wayland.compositor = "kwin"; 45 45 }; 46 46 47 - services.desktopManager.plasma6 = { 47 + services.desktopManager.plasma6 = { 48 48 enable = true; 49 49 enableQt5Integration = false; 50 50 }; ··· 89 89 description = "Cameron"; 90 90 extraGroups = [ "networkmanager" "wheel" ]; 91 91 packages = with pkgs; [ 92 - # thunderbird 93 92 ]; 94 93 }; 95 94 nix.settings.experimental-features = [ "nix-command" "flakes" ]; ··· 102 101 systemd.services."getty@tty1".enable = false; 103 102 systemd.services."autovt@tty1".enable = false; 104 103 105 - # Install firefox. 106 104 programs.firefox.enable = true; 107 105 programs.fish.enable = true; 108 106 programs.steam.enable = true; 107 + programs.starship.enable = true; 108 + programs.zoxide.enable = true; 109 109 110 - # Allow unfree packages 111 110 nixpkgs.config.allowUnfree = true; 112 111 113 112 services.flatpak.enable = true; ··· 134 133 pkg-config 135 134 openssl 136 135 claude-code 136 + wl-clipboard 137 + mako 138 + ]; 139 + 140 + nixpkgs.config.permittedInsecurePackages = [ 141 + "mbedtls-2.28.10" 137 142 ]; 138 143 139 144 # Some programs need SUID wrappers, can be configured further or are ··· 162 167 # Before changing this value read the documentation for this option 163 168 # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). 164 169 system.stateVersion = "25.05"; # Did you read the comment? 165 - 170 + environment.sessionVariables.NIXOS_OZONE_WL = "1"; 166 171 }