Reverted to old commit

This commit is contained in:
KoenDR06 2024-05-19 22:37:17 +02:00
parent da52258730
commit 01ce4b4c11
5 changed files with 33 additions and 3 deletions

View file

@ -9,4 +9,4 @@
* Whatsapp * Whatsapp
* Configure Display setup and refresh rate * Configure Display setup and refresh rate
* Rebuild: sudo nixos-rebuild switch --flake .#hostname * Rebuild: update .#hostname

View file

@ -56,7 +56,6 @@
reaper reaper
retext retext
solaar solaar
syncthing
spotify spotify
thunderbird thunderbird
whatsapp-for-linux whatsapp-for-linux

View file

@ -28,6 +28,7 @@
# Enable programs # Enable programs
home.packages = with pkgs; [ home.packages = with pkgs; [
docker-compose docker-compose
fzf
htop htop
gnupg gnupg
jdk jdk

View file

@ -51,6 +51,36 @@
fallbackDns = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ]; fallbackDns = [ "1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one" ];
}; };
# services.syncthing = {
# enable = true;
# user = "horseman";
# dataDir = "/home/horseman";
# configDir = "/home/horseman/.config/syncthing";
# overrideDevices = true;
# overrideFolders = true;
# settings = {
# devices = {
# "luna" = ;
# "terra" = ;
# "solis" = ;
# };
# folders = {
# "Documents" = {
# path = "/home/horseman/Documents";
# devices = [ "solis" "terra" "luna" ];
# }:
# "Programming" = {
# path = "/home/horseman/Programming";
# devices = [ "solis" "terra" "luna" ];
# };
# };
# gui = {
# user = ;
# password = ;
# };
# };
# };
users.users = { users.users = {
horseman = { horseman = {
initialPassword = "1234"; initialPassword = "1234";

View file

@ -27,6 +27,6 @@
theme = "agnoster"; theme = "agnoster";
}; };
shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi"; # shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi";
}; };
} }