Small changes on nixos

This commit is contained in:
xenia 2024-09-15 23:20:47 +02:00
parent 7f90793909
commit 7a4d0f7340
5 changed files with 14 additions and 2 deletions

View File

@ -54,7 +54,7 @@ esac";
}; };
mouse.hide_when_typing = stdenv.isDarwin; mouse.hide_when_typing = stdenv.isDarwin;
font = { font = {
normal.family = "uzura_font"; normal.family = "SAX2";
size = font-size; size = font-size;
}; };
colors.primary = { colors.primary = {

View File

@ -39,13 +39,15 @@ in rec {
pyusb usbtmc pyusb usbtmc
ipython mypy (pylsp-mypy.overrideAttrs (old: { doCheck = false; })) ipython mypy (pylsp-mypy.overrideAttrs (old: { doCheck = false; }))
])) ]))
( agda.withPackages (ps: with ps; [ standard-library cubical ]) ) sqlite-interactive
typst typst
# nodePackages.typescript # nodePackages.typescript
# nodePackages.typescript-language-server # nodePackages.typescript-language-server
zulip-term zulip-term
ngspice
# (extras.challtools python311Packages) # (extras.challtools python311Packages)
]; ];

View File

@ -29,6 +29,8 @@ in
services.desktopManager.plasma6.enable = true; services.desktopManager.plasma6.enable = true;
services.displayManager.defaultSession = "plasma"; services.displayManager.defaultSession = "plasma";
services.mullvad-vpn.enable = true;
hardware.opengl.enable = true; hardware.opengl.enable = true;
console.useXkbConfig = true; console.useXkbConfig = true;
@ -55,6 +57,7 @@ in
stilo-themes stilo-themes
firefox firefox
thunderbird
glxinfo glxinfo
start-plasma-shortcut start-plasma-shortcut
]; ];

View File

@ -56,4 +56,7 @@ xkb_symbols "fox" {
include "level3(lalt_switch)" include "level3(lalt_switch)"
key <RTSH> { [ Alt_R ] }; key <RTSH> { [ Alt_R ] };
# key <RALT> { [ Super_L ] };
key <LWIN> { [ Super_L ] };
key <RWIN> { [ Shift_L ] };
}; };

View File

@ -23,5 +23,9 @@
mountPoint = "/home/xenia/foxshare"; mountPoint = "/home/xenia/foxshare";
options = ["uid=${builtins.toString config.users.users.xenia.uid}" "nofail"]; options = ["uid=${builtins.toString config.users.users.xenia.uid}" "nofail"];
}; };
swapDevices = [{
device = "/swap";
size = 16 * 1024; # 16GB
}];
} }