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: update loki

cosmeak 6a7e931c fd0884f5

+18 -19
+3 -3
flake.lock
··· 23 23 }, 24 24 "nixpkgs": { 25 25 "locked": { 26 - "lastModified": 1759580034, 27 - "narHash": "sha256-YWo57PL7mGZU7D4WeKFMiW4ex/O6ZolUS6UNBHTZfkI=", 26 + "lastModified": 1761999846, 27 + "narHash": "sha256-IYlYnp4O4dzEpL77BD/lj5NnJy2J8qbHkNSFiPBCbqo=", 28 28 "owner": "nixos", 29 29 "repo": "nixpkgs", 30 - "rev": "3bcc93c5f7a4b30335d31f21e2f1281cba68c318", 30 + "rev": "3de8f8d73e35724bf9abef41f1bdbedda1e14a31", 31 31 "type": "github" 32 32 }, 33 33 "original": {
+15 -16
machines/nixos/loki/default.nix
··· 52 52 networking.hostName = hostname; 53 53 54 54 # Desktop Environment 55 - services.xserver.enable = true; 56 - services.xserver.displayManager.gdm.enable = true; 57 - services.xserver.desktopManager.gnome.enable = true; 58 - services.xserver.displayManager.gdm.wayland = true; 55 + services.displayManager.cosmic-greeter.enable = true; 56 + services.desktopManager.cosmic.enable = true; 57 + services.desktopManager.cosmic.xwayland.enable = true; 59 58 services.displayManager.autoLogin.enable = true; 60 59 services.displayManager.autoLogin.user = "cosmeak"; 61 - 60 + 62 61 # Global packages 63 62 environment.systemPackages = with pkgs; [ 64 - adwaita-icon-theme 65 63 git 66 - gnome-tweaks 67 64 just 68 65 nixd 69 66 ]; ··· 74 71 description = "cosmeak"; 75 72 extraGroups = [ "networkmanager" "wheel" ]; 76 73 packages = with pkgs; [ 77 - _1password-gui 78 - ghostty 79 - librewolf 80 - obs-studio 81 - obsidian 82 - prismlauncher 83 - spotify 84 - vesktop 85 - zed-editor 74 + _1password-gui # Password manager 75 + code-cursor # AI Code Editor 76 + discord # Discord Client 77 + ghostty # Terminal Emulator 78 + heroic # Game Launcher (Epic Games, GOG) 79 + librewolf # Web Browser 80 + obs-studio # Recording App 81 + obsidian # Note taking 82 + prismlauncher # Minecraft launcher 83 + spotify # Music Player 84 + vesktop # Discord custom client 86 85 ]; 87 86 }; 88 87