Compare commits
2 Commits
c1aef574b1
...
8ba08ce982
Author | SHA1 | Date | |
---|---|---|---|
8ba08ce982 | |||
2b50aeba93 |
@ -32,6 +32,7 @@
|
||||
hardware.enableRedistributableFirmware = true;
|
||||
hardware.enableAllFirmware = true;
|
||||
|
||||
# ROCm
|
||||
hardware.opengl.extraPackages = with pkgs; [
|
||||
rocm-opencl-icd
|
||||
rocm-opencl-runtime
|
||||
@ -40,6 +41,7 @@
|
||||
"L+ /opt/rocm/hip - - - - ${pkgs.hip}"
|
||||
];
|
||||
|
||||
# System wide barrier instance
|
||||
systemd.services.barrier-sddm = {
|
||||
description = "Barrier mouse/keyboard share";
|
||||
requires = [ "display-manager.service" ];
|
||||
@ -60,6 +62,9 @@
|
||||
'';
|
||||
};
|
||||
|
||||
# Login into X11 plasma so barrier works well
|
||||
services.xserver.displayManager.defaultSession = "Plasma (X11)";
|
||||
|
||||
users.users.cris = {
|
||||
isNormalUser = true;
|
||||
hashedPassword = "$y$j9T$LMGwHVauFWAcAyWSSmcuS/$BQpDyjDHZZbvj54.ijvNb03tr7IgX9wcjYCuCxjSqf6";
|
||||
@ -73,7 +78,20 @@
|
||||
# Dr. John A. Zoidberg
|
||||
users.users.john = {
|
||||
isNormalUser = true;
|
||||
hashedPassword = "";
|
||||
inherit (config.users.users.googlebot) hashedPassword packages;
|
||||
uid = 1002;
|
||||
};
|
||||
|
||||
# Auto login into Plasma in john zoidberg account
|
||||
# services.xserver.displayManager.sddm.settings = {
|
||||
# Autologin = {
|
||||
# Session = "Plasma (X11)";
|
||||
# User = "john";
|
||||
# };
|
||||
# };
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
jellyfin-media-player
|
||||
config.services.xserver.desktopManager.kodi.package
|
||||
];
|
||||
}
|
||||
|
@ -25,7 +25,7 @@
|
||||
|
||||
# Fetch key from USB drive
|
||||
keyFileSize = 4096;
|
||||
keyFile = "/dev/disk/by-id/usb-Mass_Storage_Device_121220160204-0:0";
|
||||
keyFile = "/dev/disk/by-id/usb-Mass_Storage_Device_121220160204-0:0-part2";
|
||||
fallbackToPassword = true;
|
||||
};
|
||||
fileSystems."/" =
|
||||
@ -35,7 +35,7 @@
|
||||
};
|
||||
fileSystems."/boot" =
|
||||
{
|
||||
device = "/dev/disk/by-uuid/954B-AB3E";
|
||||
device = "/dev/disk/by-uuid/8074-B04D";
|
||||
fsType = "vfat";
|
||||
};
|
||||
swapDevices =
|
||||
|
Loading…
x
Reference in New Issue
Block a user