From 01ce4b4c11f8c519f1796e77665d792b492ad291 Mon Sep 17 00:00:00 2001 From: KoenDR06 Date: Sun, 19 May 2024 22:37:17 +0200 Subject: [PATCH] Reverted to old commit --- README.md | 2 +- home-manager/apps.nix | 1 - home-manager/server-apps.nix | 1 + machines/common/configuration.nix | 30 ++++++++++++++++++++++++++++++ pkgs/zsh.nix | 2 +- 5 files changed, 33 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6e21b59..900ba14 100644 --- a/README.md +++ b/README.md @@ -9,4 +9,4 @@ * Whatsapp * Configure Display setup and refresh rate -* Rebuild: sudo nixos-rebuild switch --flake .#hostname \ No newline at end of file +* Rebuild: update .#hostname diff --git a/home-manager/apps.nix b/home-manager/apps.nix index 71c1067..bd391f8 100644 --- a/home-manager/apps.nix +++ b/home-manager/apps.nix @@ -56,7 +56,6 @@ reaper retext solaar - syncthing spotify thunderbird whatsapp-for-linux diff --git a/home-manager/server-apps.nix b/home-manager/server-apps.nix index 27dfe22..1536805 100644 --- a/home-manager/server-apps.nix +++ b/home-manager/server-apps.nix @@ -28,6 +28,7 @@ # Enable programs home.packages = with pkgs; [ docker-compose + fzf htop gnupg jdk diff --git a/machines/common/configuration.nix b/machines/common/configuration.nix index a5b270a..eca3c4b 100644 --- a/machines/common/configuration.nix +++ b/machines/common/configuration.nix @@ -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"; diff --git a/pkgs/zsh.nix b/pkgs/zsh.nix index dfc4afb..9707a0f 100644 --- a/pkgs/zsh.nix +++ b/pkgs/zsh.nix @@ -27,6 +27,6 @@ theme = "agnoster"; }; - shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi"; + # shellInit = "if [[ $(tty) == \"/dev/tty\"* ]]; then; bash; fi"; }; }