aboutsummaryrefslogtreecommitdiff
path: root/nixos/configurations/gaspode.nix
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2026-09-23 08:09:45 +0200
committerKarel Kočí <cynerd@email.cz>2026-09-23 08:09:45 +0200
commitc42de3037ec406fa834c6c1756a6f0b70dcdd38f (patch)
tree0d195492fc3f24c9742567f5bff8c157ec72baa0 /nixos/configurations/gaspode.nix
parentb0af9c76e1687f2afad15ba7a0de1d24331868c8 (diff)
downloadnixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.tar.gz
nixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.tar.bz2
nixos-personal-c42de3037ec406fa834c6c1756a6f0b70dcdd38f.zip
treewise: cleanup and general updateHEADmaster
Diffstat (limited to 'nixos/configurations/gaspode.nix')
-rw-r--r--nixos/configurations/gaspode.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/nixos/configurations/gaspode.nix b/nixos/configurations/gaspode.nix
deleted file mode 100644
index 5d6d090..0000000
--- a/nixos/configurations/gaspode.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- system.stateVersion = "25.05";
- nixpkgs.hostPlatform.system = "armv7l-linux";
-
- fileSystems = {
- "/" = {
- device = "/dev/mmcblk0p2";
- options = ["compress=lzo" "subvol=@nix"];
- };
- "/home" = {
- device = "/dev/mmcblk0p2";
- options = ["compress=lzo" "subvol=@home"];
- };
- "/boot" = {
- device = "/dev/mmcblk0p1";
- };
- };
-}