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; [
|
packages = with pkgs; [
|
||||||
## Apps
|
## Apps
|
||||||
steam
|
steam
|
||||||
wine-staging
|
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
tldr
|
tldr
|
||||||
powerline
|
powerline
|
||||||
powerline-fonts
|
powerline-fonts
|
||||||
lutris
|
lutris
|
||||||
kdiff3
|
kdiff3
|
||||||
|
wineWowPackages.staging
|
||||||
|
winetricks
|
||||||
|
|
||||||
(lutris.override {
|
(lutris.override {
|
||||||
extraPkgs = pkgs: [
|
extraPkgs = pkgs: [
|
||||||
|
|
|
@ -29,33 +29,24 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
## Apps
|
|
||||||
keepassxc
|
keepassxc
|
||||||
steam
|
steam
|
||||||
wine-staging
|
|
||||||
insync
|
insync
|
||||||
# gnome-secrets
|
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
simple-scan
|
simple-scan
|
||||||
wireguard-tools
|
wireguard-tools
|
||||||
# steamlink
|
|
||||||
element-desktop
|
element-desktop
|
||||||
# youtube-music
|
|
||||||
etcher
|
etcher
|
||||||
## system monitoring
|
|
||||||
iotop
|
iotop
|
||||||
radeontop
|
radeontop
|
||||||
lsof
|
lsof
|
||||||
wirelesstools
|
wirelesstools
|
||||||
# lm-sensors
|
lm-sensors
|
||||||
## command line niceness
|
|
||||||
tldr
|
tldr
|
||||||
powerline
|
powerline
|
||||||
powerline-fonts
|
powerline-fonts
|
||||||
thefuck
|
thefuck
|
||||||
## development
|
|
||||||
dotnet-sdk_7
|
dotnet-sdk_7
|
||||||
# gnome workbench
|
|
||||||
jetbrains.rider
|
jetbrains.rider
|
||||||
alejandra
|
alejandra
|
||||||
arduino
|
arduino
|
||||||
|
@ -64,6 +55,8 @@
|
||||||
jetbrains.pycharm-professional
|
jetbrains.pycharm-professional
|
||||||
kdiff3
|
kdiff3
|
||||||
docker
|
docker
|
||||||
|
wineWowPackages.staging
|
||||||
|
winetricks
|
||||||
|
|
||||||
(lutris.override {
|
(lutris.override {
|
||||||
extraPkgs = pkgs: [
|
extraPkgs = pkgs: [
|
||||||
|
|
|
@ -13,6 +13,10 @@
|
||||||
./home-ronja.nix
|
./home-ronja.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
users.groups."games" = {
|
||||||
|
members = ["vinzenz" "ronja"];
|
||||||
|
};
|
||||||
|
|
||||||
users.users.vinzenz.openssh.authorizedKeys.keys = [
|
users.users.vinzenz.openssh.authorizedKeys.keys = [
|
||||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINrY6tcgnoC/xbgL7vxSjddEY9MBxRXe9n2cAHt88/TT home roaming"
|
||||||
];
|
];
|
||||||
|
@ -32,6 +36,12 @@
|
||||||
options = ["subvol=@"];
|
options = ["subvol=@"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
"/games" = {
|
||||||
|
device = "/dev/disk/by-uuid/0e9c983a-e733-447e-8181-f41d6670c4b8";
|
||||||
|
fsType = "btrfs";
|
||||||
|
options = ["subvol=@games"];
|
||||||
|
};
|
||||||
|
|
||||||
"/boot" = {
|
"/boot" = {
|
||||||
device = "/dev/disk/by-uuid/AF67-8F16";
|
device = "/dev/disk/by-uuid/AF67-8F16";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
|
|
Loading…
Reference in a new issue