Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
esselius committed Nov 2, 2024
1 parent 01390e7 commit 4d5b8c3
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 1 deletion.
6 changes: 6 additions & 0 deletions darwin-modules/linux-builder.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@
maxJobs = 4;
ephemeral = true;
config = {
imports = [
../nixos-modules/user-peteresselius.nix
../nixos-modules/sysdig.nix
];
virtualisation = {
darwin-builder = {
diskSize = 100 * 1024;
memorySize = 16 * 1024;
};
cores = 8;
};

nixpkgs.config.allowUnsupportedSystem = true;
};
};
}
8 changes: 7 additions & 1 deletion home-modules/neovim.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ in

gitblame.enable = true;

gitgutter.enable = true;

indent-o-matic.enable = true;

which-key.enable = true;
Expand Down Expand Up @@ -75,6 +77,10 @@ in
};
};

colorschemes.catppuccin.enable = true;
colorschemes.gruvbox.enable = true;
};

programs.fish.shellAbbrs = {
vim = "nvim";
};
}
3 changes: 3 additions & 0 deletions home-modules/profiles/tools/common.nix
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,8 @@
attic-server
attic-client
nmap
postgresql
killall
file
];
}
3 changes: 3 additions & 0 deletions nixos-configurations/vm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
ezModules.hardware-vm
ezModules.sshd
ezModules.user-peteresselius
ezModules.sysdig
];

programs.nix-ld.enable = true;
Expand All @@ -20,4 +21,6 @@
nix.settings.sandbox = "relaxed";

virtualisation.docker.enable = true;

nixpkgs.config.allowUnsupportedSystem = true;
}
1 change: 1 addition & 0 deletions nixos-modules/profiles/default.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
imports = [
./auth.nix
./ingress.nix
./monitoring.nix
./smarthome.nix
];
Expand Down
3 changes: 3 additions & 0 deletions nixos-modules/sysdig.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
programs.sysdig.enable = true;
}

0 comments on commit 4d5b8c3

Please sign in to comment.