changed stuff
This commit is contained in:
parent
dc810fb287
commit
17c0664cb2
@ -41,6 +41,14 @@
|
|||||||
settings.PasswordAuthentication = false;
|
settings.PasswordAuthentication = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/games" = {
|
||||||
|
device = "/dev/disk/by-uuid/90bea801-2b8a-40db-8862-ccc55f2b2262";
|
||||||
|
fsType = "ext4";
|
||||||
|
options = [
|
||||||
|
"nofail" # Prevent system from failing if this drive doesn't mount
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
system.stateVersion = release;
|
system.stateVersion = release;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -25,6 +25,8 @@ in
|
|||||||
tmux
|
tmux
|
||||||
killall
|
killall
|
||||||
neovim
|
neovim
|
||||||
|
pciutils
|
||||||
|
progress
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfreePredicate =
|
nixpkgs.config.allowUnfreePredicate =
|
||||||
|
|||||||
@ -15,16 +15,22 @@
|
|||||||
sunshine = {
|
sunshine = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
|
capSysAdmin = true;
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
};
|
};
|
||||||
|
avahi = {
|
||||||
|
enable = true;
|
||||||
|
publish.enable = true;
|
||||||
|
publish.userServices = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
systemd.user.services.sunshine.enable = true;
|
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
ffmpeg
|
||||||
zeroad
|
zeroad
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@ -2,7 +2,10 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
services = {
|
services = {
|
||||||
xserver.enable = true;
|
xserver = {
|
||||||
|
enable = true;
|
||||||
|
xkb.options = "caps:escape";
|
||||||
|
};
|
||||||
desktopManager.plasma6.enable = true;
|
desktopManager.plasma6.enable = true;
|
||||||
displayManager.defaultSession = "plasmax11";
|
displayManager.defaultSession = "plasmax11";
|
||||||
displayManager.sddm = {
|
displayManager.sddm = {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user