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
* Configure Display setup and refresh rate
* Rebuild: sudo nixos-rebuild switch --flake .#hostname
* Rebuild: update .#hostname

View file

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

View file

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

View file

@ -51,6 +51,36 @@
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 = {
horseman = {
initialPassword = "1234";

View file

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