mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
split game subvol, adjust wine pkgs
This commit is contained in:
parent
930acac8d2
commit
7c59588d4e
|
@ -31,13 +31,14 @@
|
|||
packages = with pkgs; [
|
||||
## Apps
|
||||
steam
|
||||
wine-staging
|
||||
telegram-desktop
|
||||
tldr
|
||||
powerline
|
||||
powerline-fonts
|
||||
lutris
|
||||
kdiff3
|
||||
wineWowPackages.staging
|
||||
winetricks
|
||||
|
||||
(lutris.override {
|
||||
extraPkgs = pkgs: [
|
||||
|
|
|
@ -29,33 +29,24 @@
|
|||
};
|
||||
|
||||
packages = with pkgs; [
|
||||
## Apps
|
||||
keepassxc
|
||||
steam
|
||||
wine-staging
|
||||
insync
|
||||
# gnome-secrets
|
||||
telegram-desktop
|
||||
simple-scan
|
||||
wireguard-tools
|
||||
# steamlink
|
||||
element-desktop
|
||||
# youtube-music
|
||||
etcher
|
||||
## system monitoring
|
||||
iotop
|
||||
radeontop
|
||||
lsof
|
||||
wirelesstools
|
||||
# lm-sensors
|
||||
## command line niceness
|
||||
lm-sensors
|
||||
tldr
|
||||
powerline
|
||||
powerline-fonts
|
||||
thefuck
|
||||
## development
|
||||
dotnet-sdk_7
|
||||
# gnome workbench
|
||||
jetbrains.rider
|
||||
alejandra
|
||||
arduino
|
||||
|
@ -64,6 +55,8 @@
|
|||
jetbrains.pycharm-professional
|
||||
kdiff3
|
||||
docker
|
||||
wineWowPackages.staging
|
||||
winetricks
|
||||
|
||||
(lutris.override {
|
||||
extraPkgs = pkgs: [
|
||||
|
|
|
@ -13,6 +13,10 @@
|
|||
./home-ronja.nix
|
||||
];
|
||||
|
||||
users.groups."games" = {
|
||||
members = ["vinzenz" "ronja"];
|
||||
};
|
||||
|
||||
users.users.vinzenz.openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
|
||||
];
|
||||
|
@ -32,6 +36,12 @@
|
|||
options = ["subvol=@"];
|
||||
};
|
||||
|
||||
"/games" = {
|
||||
device = "/dev/disk/by-uuid/0e9c983a-e733-447e-8181-f41d6670c4b8";
|
||||
fsType = "btrfs";
|
||||
options = ["subvol=@games"];
|
||||
};
|
||||
|
||||
"/boot" = {
|
||||
device = "/dev/disk/by-uuid/AF67-8F16";
|
||||
fsType = "vfat";
|
||||
|
|
Loading…
Reference in a new issue