aboutsummaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/machine/gaspode.nix25
-rw-r--r--nixos/modules/develop.nix7
2 files changed, 25 insertions, 7 deletions
diff --git a/nixos/machine/gaspode.nix b/nixos/machine/gaspode.nix
new file mode 100644
index 0000000..82762f1
--- /dev/null
+++ b/nixos/machine/gaspode.nix
@@ -0,0 +1,25 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+{
+
+ config = {
+
+ fileSystems = {
+ "/" = {
+ device = "/dev/mmcblk0p2";
+ options = ["compress=lzo" "subvol=@nix"];
+ };
+ "/home" = {
+ device = "/dev/mmcblk0p2";
+ options = ["compress=lzo" "subvol=@home"];
+ };
+ "/boot" = {
+ device = "/dev/mmcblk0p1";
+ };
+ };
+
+ };
+
+}
diff --git a/nixos/modules/develop.nix b/nixos/modules/develop.nix
index 844081b..fab5733 100644
--- a/nixos/modules/develop.nix
+++ b/nixos/modules/develop.nix
@@ -29,13 +29,6 @@ in {
nix-prefetch-git nix-prefetch-github nix-prefetch-scripts
rnix-lsp
- # C
- clang-tools gcc bear ctags
- cppcheck flawfinder
- check valgrind
- gdb
- lcov massif-visualizer
-
# Shell
dash # Posix shell
bats