Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

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

feat: remove unused cinnamon apps

cosmeak b6c2812f 3760a6cf

+18 -2
+15 -1
modules/features/desktops/cinnamon.nix
··· 1 1 { 2 - flake.nixosModules.cinnamon-desktop = { inputs, ... }: { 2 + flake.nixosModules.cinnamon-desktop = { inputs, pkgs, ... }: { 3 3 imports = with inputs.self.nixosModules; [ 4 4 audio 5 5 ]; ··· 7 7 services.xserver.enable = true; 8 8 services.xserver.desktopManager.cinnamon.enable = true; 9 9 services.xserver.displayManager.lightdm.enable = true; 10 + 11 + environment.cinnamon.excludePackages = with pkgs; [ 12 + celluloid 13 + gnome-terminal 14 + pix 15 + warpinator 16 + xed-editor 17 + ]; 18 + 19 + environment.systemPackages = with pkgs; [ 20 + ghostty # Terminal emulator 21 + helix # TUI code editor 22 + vlc # Video Player 23 + ]; 10 24 }; 11 25 }
+3 -1
modules/users/cosmeak.nix
··· 31 31 ({ pkgs, ... }: { 32 32 users.users.${username} = { 33 33 packages = with pkgs; [ 34 + btop 34 35 ghostty # Terminal emulator 35 36 heroic # Game Launcher (Epic Games, GOG) 36 - librewolf # Web browser 37 + librewolf # Web browser 37 38 prismlauncher # Minecraft launcher 38 39 vesktop # Discord client 39 40 (zed-editor.fhsWithPackages (pkg: [ zlib ])) # Code editor 41 + protonvpn-gui 40 42 ] ++ (sharedPackages pkgs); 41 43 }; 42 44 })