Compare commits

..

No commits in common. "24a0d9d2a1e4770e88905d153489ec7ee1f47f7d" and "6e2ba8663812f7a76561e7689bdd059e1a52a2b4" have entirely different histories.

3 changed files with 22 additions and 8 deletions

View File

@ -8,7 +8,7 @@ in {
./xfce.nix ./xfce.nix
./yubikey.nix ./yubikey.nix
./chromium.nix ./chromium.nix
# ./firefox.nix ./firefox.nix
./audio.nix ./audio.nix
# ./torbrowser.nix # ./torbrowser.nix
./pithos.nix ./pithos.nix
@ -30,6 +30,7 @@ in {
# Applications # Applications
users.users.googlebot.packages = with pkgs; [ users.users.googlebot.packages = with pkgs; [
chromium keepassxc mumble tigervnc bluez-tools vscodium element-desktop mpv chromium keepassxc mumble tigervnc bluez-tools vscodium element-desktop mpv
libva-utils ffmpeg-full
]; ];
# Networking # Networking

View File

@ -1,16 +1,28 @@
{ config, pkgs, fetchurl, lib, ... }: { config, pkgs, fetchurl, ... }:
{ {
imports = [ imports = [
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
# 2plyinzleibb3r2jfdrzsfflwxsimdfipw2ynbfuueuvydeigwxu2kid.onion
boot.kernelPackages = pkgs.linuxPackages_latest;
nix.flakes.enable = true; nix.flakes.enable = true;
efi.enable = true; efi.enable = true;
# luks = {
# enable = true;
# device = {
# path = "/dev/disk/by-uuid/fbe946d3-414f-4c2e-bb24-b845870fde6c";
# allowDiscards = true;
# };
# };
boot.initrd.luks.devices."enc-pv" = { boot.initrd.luks.devices."enc-pv" = {
device = "/dev/disk/by-uuid/d71ebe1f-7c49-454d-b28b-1dc54cf280e5"; device = "/dev/disk/by-uuid/fbe946d3-414f-4c2e-bb24-b845870fde6c";
allowDiscards = true; allowDiscards = true;
}; };
@ -19,3 +31,4 @@
de.enable = true; de.enable = true;
de.touchpad.enable = true; de.touchpad.enable = true;
} }

View File

@ -14,26 +14,26 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "/dev/disk/by-uuid/4ba62b93-d30e-4638-b68f-c830e6edde48"; { device = "/dev/mapper/vg-root";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=root" ]; options = [ "subvol=root" ];
}; };
fileSystems."/home" = fileSystems."/home" =
{ device = "/dev/disk/by-uuid/4ba62b93-d30e-4638-b68f-c830e6edde48"; { device = "/dev/mapper/vg-root";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=home" ]; options = [ "subvol=home" ];
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/8C47-F740"; { device = "/dev/disk/by-uuid/CD65-4596";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/2aee96fd-5132-480f-a798-c6b87be2ffd9"; } [ { device = "/dev/disk/by-uuid/b5f28078-9dae-42c2-a21e-54b67954cf82"; }
]; ];
# high-resolution display # high-resolution display
hardware.video.hidpi.enable = lib.mkDefault true; hardware.video.hidpi.enable = lib.mkDefault true;
} }