Nixfiles! :3
0

Configure Feed

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

Ponyta switched to Windows! But is running Nix in WSL and still uses home-manager of course.


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (Jul 15, 2026, 1:36 PM +0200) 4b3c3f21 af176fed

+4 -14
+1 -1
README.md
··· 74 74 | Name | Kind | About | Special | 75 75 | -------- | ------------------ | --------------------------------------------------------------------- | ----------------------------------------------------------------------------- | 76 76 | [Fennekin](https://pokemondb.net/pokedex/fennekin) | Convertible laptop (fire) | My take-with-me and drawing laptop, has a nice stylus tew | Touchscreen, convertible, wifi adaptor is busted, so there's an external one. | 77 - | [Ponyta](https://pokemondb.net/pokedex/ponyta) | Laptop (fire) | My most beefiest laptop eva! And I use it mainly as my school laptop. | Has a good graphics card. Bigger screen. | 77 + | [Ponyta](https://pokemondb.net/pokedex/ponyta) | Laptop (fire) | My most beefiest laptop eva! And I use it mainly as my school laptop, which is why recently after it got damaged physically I decided to switch it back to Windows so I'd use it less. Now Nixfiles are on WSL and I think used just as much. Lol! | Has a good graphics card. Bigger screen. | 78 78 | [Samurott](https://pokemondb.net/pokedex/samurott) | Desktop PC (water) | - | Ultrawide screen, dual boots windows for games. | 79 79 | [Cubchoo](https://pokemondb.net/pokedex/cubchoo) | Server (ice) | Also known as `marpi5-1` or `strawmelonservices`! | Lives in a hamster cage | 80 80 | [frigometri (german version of Cryogonal, symbolising server location)](https://pokemondb.net/pokedex/cryogonal) | Server (ice) | Cool server from friend I can use |
+2 -2
flake.nix
··· 127 127 nixosConfigurations = { 128 128 Fennekin = (defineSystem "Fennekin" "x86_64-linux" true); 129 129 Samurott = (defineSystem "Samurott" "x86_64-linux" true); 130 - Ponyta = (defineSystem "Ponyta" "x86_64-linux" true); 130 + Ponyta = (defineSystem "Ponyta" "x86_64-linux" false); 131 131 frigometri = (defineSystem "frigometri" "x86_64-linux" false); 132 132 Tepig = (defineSystem "Tepig" "x86_64-linux" true); 133 133 }; ··· 135 135 homeConfigurations = { 136 136 Fennekin = (defineHome "Fennekin" "x86_64-linux" true); 137 137 Samurott = (defineHome "Samurott" "x86_64-linux" true); 138 - Ponyta = (defineHome "Ponyta" "x86_64-linux" true); 138 + Ponyta = (defineHome "Ponyta" "x86_64-linux" false); 139 139 frigometri = (defineHome "frigometri" "x86_64-linux" false); 140 140 marpi5-1 = (defineHome "Cubchoo" "aarch64-linux" false); 141 141 Tepig = (defineHome "Tepig" "x86_64-linux" true);
+1 -11
home/host-specific/Ponyta.nix
··· 1 1 { 2 - ... 3 - }: 4 - { 5 - imports = [ 6 - ../modules/entertainment/steam.nix 7 - ../modules/conversation.nix 8 - ../modules/entertainment/music-streaming.nix 9 - ../modules/school.nix 10 - # Big screen, may run Jetbrains 11 - ../modules/development/jetbrainspackages.nix 12 - ]; 2 + targets.genericLinux.enable = true; 13 3 }