Compare commits
3
Commits
18fe700d10
...
db8c11c83a
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
db8c11c83a | ||
|
|
b09bd7f9f8 | ||
|
|
9ced8b9273 |
@@ -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;
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|||||||
@@ -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
@@ -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": {
|
||||||
|
|||||||
@@ -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')
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user