Compare commits
No commits in common. "14007ca4f8099344fa12db3a96d417434f0e3731" and "5f9aa7aa225d509e885f65e9a3614296be71fa21" have entirely different histories.
14007ca4f8
...
5f9aa7aa22
|
@ -29,6 +29,8 @@
|
||||||
services.wallpaper.enable = true;
|
services.wallpaper.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
virtualisation.containers.cdi.dynamic.nvidia.enable = true;
|
||||||
|
|
||||||
home-manager.users.moritz.home.packages = with pkgs; [
|
home-manager.users.moritz.home.packages = with pkgs; [
|
||||||
anki
|
anki
|
||||||
stable.calibre # NOTE: breaks often in unstable
|
stable.calibre # NOTE: breaks often in unstable
|
||||||
|
@ -36,14 +38,10 @@
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
keyboard.qmk.enable = true;
|
keyboard.qmk.enable = true;
|
||||||
nvidia = {
|
nvidia.modesetting.enable = true;
|
||||||
modesetting.enable = true;
|
opengl = {
|
||||||
open = true;
|
|
||||||
};
|
|
||||||
nvidia-container-toolkit.enable = true;
|
|
||||||
graphics = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
enable32Bit = true;
|
driSupport32Bit = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# sensors
|
# sensors
|
||||||
|
@ -52,6 +50,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
|
# KERNEL
|
||||||
|
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages; # NOTE: use latest zfs compatible kernel
|
||||||
|
|
||||||
# BOOT
|
# BOOT
|
||||||
supportedFilesystems = [ "zfs" "btrfs" "ntfs" ];
|
supportedFilesystems = [ "zfs" "btrfs" "ntfs" ];
|
||||||
loader = {
|
loader = {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ lib, pkgs, ... }:
|
{ lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# needed for zfs pool
|
# needed for zfs pool
|
||||||
|
@ -83,27 +83,9 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
# rollback to blank
|
# rollback to blank
|
||||||
boot.initrd.systemd.services.rollback = {
|
boot.initrd.postDeviceCommands = lib.mkAfter ''
|
||||||
description = "Rollback ZFS datasets to a pristine state";
|
zfs rollback -r zroot/encrypted/root@blank && echo "rollback complete"
|
||||||
wantedBy = [
|
'';
|
||||||
"initrd.target"
|
|
||||||
];
|
|
||||||
after = [
|
|
||||||
"zfs-import-zroot.service"
|
|
||||||
];
|
|
||||||
before = [
|
|
||||||
"sysroot.mount"
|
|
||||||
];
|
|
||||||
path = with pkgs; [
|
|
||||||
zfs
|
|
||||||
];
|
|
||||||
unitConfig.DefaultDependencies = "no";
|
|
||||||
serviceConfig.Type = "oneshot";
|
|
||||||
script = ''
|
|
||||||
zfs rollback -r zroot/encrypted/root@blank && echo "rollback complete"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
boot.initrd.systemd.enable = true;
|
|
||||||
fileSystems."/persist".neededForBoot = true;
|
fileSystems."/persist".neededForBoot = true;
|
||||||
# HACK: to fix issue of agenix running before impermanence
|
# HACK: to fix issue of agenix running before impermanence
|
||||||
age.identityPaths = [
|
age.identityPaths = [
|
||||||
|
|
|
@ -241,16 +241,15 @@ in
|
||||||
which-nix
|
which-nix
|
||||||
|
|
||||||
# utils
|
# utils
|
||||||
(viu.override { withSixel = true; })
|
|
||||||
bat
|
bat
|
||||||
cht-sh
|
cht-sh
|
||||||
f
|
f
|
||||||
fd
|
fd
|
||||||
gi
|
gi
|
||||||
lazygit
|
|
||||||
parallel
|
parallel
|
||||||
ripgrep
|
ripgrep
|
||||||
vim
|
vim
|
||||||
|
(viu.override { withSixel = true; })
|
||||||
wget
|
wget
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
_:
|
|
||||||
|
|
||||||
{
|
|
||||||
home-manager.users.moritz.programs.nixvim = {
|
|
||||||
keymaps = [
|
|
||||||
{ key = "<leader>g"; action = "<cmd>LazyGit<cr>"; options.desc = "Lazygit"; }
|
|
||||||
];
|
|
||||||
|
|
||||||
plugins.lazygit = {
|
|
||||||
enable = true;
|
|
||||||
settings = { };
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue