Compare commits

...
3 Commits
Author SHA1 Message Date
ShatteredMINT db8c11c83a update 2026-05-12 10:25:07 +02:00
ShatteredMINT b09bd7f9f8 create starting neovim config 2026-05-12 10:21:58 +02:00
ShatteredMINT 9ced8b9273 new defaults after update 2026-05-12 09:29:15 +02:00
5 changed files with 20 additions and 3 deletions
+5
View File
@@ -83,6 +83,11 @@
htop htop
]; ];
programs.neovim = {
withRuby = false;
withPython3 = false;
};
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are
# started in user sessions. # started in user sessions.
# programs.mtr.enable = true; # programs.mtr.enable = true;
+1
View File
@@ -12,6 +12,7 @@
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd sg" ]; boot.kernelModules = [ "kvm-amd sg" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
boot.zfs.forceImportRoot = false;
fileSystems."/" = fileSystems."/" =
{ device = "NIX_CONV_POOL/root"; { device = "NIX_CONV_POOL/root";
+1
View File
@@ -14,6 +14,7 @@
boot.kernelModules = [ "kvm-amd" "sg" ]; boot.kernelModules = [ "kvm-amd" "sg" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
boot.zfs.forceImportRoot = false;
fileSystems."/" = fileSystems."/" =
{ device = "NIX_DESK_POOL/root"; { device = "NIX_DESK_POOL/root";
Generated
+3 -3
View File
@@ -27,11 +27,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1778009629, "lastModified": 1778535464,
"narHash": "sha256-nUoQtf4Zq7DRYJrfv904hjrxjAlWVP6a1pNNFKx3FCg=", "narHash": "sha256-kkUQYSv70wynJ/DfnGals6r98I6bK3CVNVTN1zbAd7Y=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "00ed86e58bb6979a7921859fd1615d19382eac5c", "rev": "b659c7ffd40fc9e3bb60d420c79c67e769b9f4ab",
"type": "github" "type": "github"
}, },
"original": { "original": {
+10
View File
@@ -64,7 +64,17 @@
enable = true; enable = true;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
wl-clipboard wl-clipboard
vimPlugins.lazy-nvim
]; ];
withRuby = false;
withPython3 = false;
initLua = ''
vim.opt.rtp:prepend("${pkgs.vimPlugins.lazy-nvim.outPath}")
require ('config')
require ('plugins')
'';
}; };