Compare commits

...

2 Commits

Author SHA1 Message Date
24a0d9d2a1 disable firefox 2021-06-29 23:09:23 -04:00
b11d530780 Get ray working 2021-06-29 23:08:01 -04:00
3 changed files with 8 additions and 22 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,7 +30,6 @@ 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,28 +1,16 @@
{ config, pkgs, fetchurl, ... }: { config, pkgs, fetchurl, lib, ... }:
{ {
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/fbe946d3-414f-4c2e-bb24-b845870fde6c"; device = "/dev/disk/by-uuid/d71ebe1f-7c49-454d-b28b-1dc54cf280e5";
allowDiscards = true; allowDiscards = true;
}; };
@ -31,4 +19,3 @@
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/mapper/vg-root"; { device = "/dev/disk/by-uuid/4ba62b93-d30e-4638-b68f-c830e6edde48";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=root" ]; options = [ "subvol=root" ];
}; };
fileSystems."/home" = fileSystems."/home" =
{ device = "/dev/mapper/vg-root"; { device = "/dev/disk/by-uuid/4ba62b93-d30e-4638-b68f-c830e6edde48";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=home" ]; options = [ "subvol=home" ];
}; };
fileSystems."/boot" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/CD65-4596"; { device = "/dev/disk/by-uuid/8C47-F740";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/b5f28078-9dae-42c2-a21e-54b67954cf82"; } [ { device = "/dev/disk/by-uuid/2aee96fd-5132-480f-a798-c6b87be2ffd9"; }
]; ];
# high-resolution display # high-resolution display
hardware.video.hidpi.enable = lib.mkDefault true; hardware.video.hidpi.enable = lib.mkDefault true;
} }