Added small changes

This commit is contained in:
FredzyW 2024-05-08 21:48:59 +02:00
parent 4b77350f91
commit 54d57d1424
3 changed files with 24 additions and 2 deletions

View file

@ -109,6 +109,8 @@
}; };
xserver = { xserver = {
enable = true; enable = true;
# layout = "us";
# xkbVariant = "colemak_dh_iso";
layout = "se"; layout = "se";
xkbVariant = ""; xkbVariant = "";
displayManager = { displayManager = {

View file

@ -33,6 +33,7 @@
allowUnfreePredicate = _: true; allowUnfreePredicate = _: true;
permittedInsecurePackages = [ permittedInsecurePackages = [
"electron-25.9.0" "electron-25.9.0"
"electron-19.1.9"
"nix-2.16.2" "nix-2.16.2"
]; ];
}; };
@ -72,8 +73,11 @@
sops sops
age age
grc grc
catppuccin-cursors.macchiatoGreen
xorg.xmodmap
#Terminal #Terminal
libsixel
git git
tmux tmux
zathura zathura
@ -93,8 +97,9 @@
poppler_utils poppler_utils
pandoc pandoc
ncspot ncspot
starship
any-nix-shell any-nix-shell
glow
macchina
#Desktop #Desktop
aerc aerc
@ -116,7 +121,8 @@
audacity audacity
pdfarranger pdfarranger
byzanz byzanz
freecad drawio
woeusb
#Dev #Dev
python3 python3

View file

@ -27,6 +27,20 @@ networking.firewall = {
{ from = 8000; to = 8010; } { from = 8000; to = 8010; }
]; ];
}; };
services = {
openssh = {
enable = true;
ports = [55502];
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
X11Forwarding = true;
};
extraConfig = ''
AllowUsers fw
'';
};
};
security.rtkit.enable = true; security.rtkit.enable = true;