diff options
| author | Kumar Damani <me@kumardamani.net> | 2023-11-02 20:14:04 +0000 |
|---|---|---|
| committer | Kumar Damani <me@kumardamani.net> | 2023-11-02 20:14:04 +0000 |
| commit | f7351d792744e833ea740c020d96c840bb028b66 (patch) | |
| tree | ae3246fc43665d5608055f65f472faac655f24ad /nixpkgs/.config | |
| parent | 03d744366c443e9cf31a165f6d9beb9ecf169bb5 (diff) | |
routine updates
Diffstat (limited to 'nixpkgs/.config')
| -rw-r--r-- | nixpkgs/.config/nixpkgs/common/nvim/plugins/indent-blankline.lua | 4 | ||||
| -rw-r--r-- | nixpkgs/.config/nixpkgs/per-user/kdam0-work/home.nix | 57 |
2 files changed, 4 insertions, 57 deletions
diff --git a/nixpkgs/.config/nixpkgs/common/nvim/plugins/indent-blankline.lua b/nixpkgs/.config/nixpkgs/common/nvim/plugins/indent-blankline.lua index 425b8cf..4953cc8 100644 --- a/nixpkgs/.config/nixpkgs/common/nvim/plugins/indent-blankline.lua +++ b/nixpkgs/.config/nixpkgs/common/nvim/plugins/indent-blankline.lua @@ -1,5 +1,3 @@ vim.opt.listchars:append "eol:↴" -require("indent_blankline").setup { - show_end_of_line = true, -} +require("ibl").setup() diff --git a/nixpkgs/.config/nixpkgs/per-user/kdam0-work/home.nix b/nixpkgs/.config/nixpkgs/per-user/kdam0-work/home.nix index b01994c..0dbe962 100644 --- a/nixpkgs/.config/nixpkgs/per-user/kdam0-work/home.nix +++ b/nixpkgs/.config/nixpkgs/per-user/kdam0-work/home.nix @@ -29,6 +29,7 @@ dns = "ssh administrator@ctrlf-dns"; pyans = "source ~/.venv/ansible/bin/activate"; pykep36 = "source ~/.venv/kepler36/bin/activate"; + pykep37 = "source ~/.venv/kepler37/bin/activate"; }; programs.home-manager.enable = true; @@ -202,6 +203,8 @@ pkgs.kubectl pkgs.kubernetes-helm pkgs.virt-viewer + pkgs.dig + pkgs.dnsutils ]; fonts.fontconfig.enable = true; @@ -213,50 +216,6 @@ }; systemd.user.services = { - nextcloud-sync = { - Unit = { - Description = "Auto sync Nextcloud"; - After = "network-online.target"; - }; - Service = { - Type = "simple"; - EnvironmentFile = "${config.home.homeDirectory}/.nextcloud.env"; - ExecStart = '' - ${pkgs.nextcloud-client}/bin/nextcloudcmd \ - -h --non-interactive \ - --user "''${NEXTCLOUD_USER}" \ - --password "''${NEXTCLOUD_PASSWORD}" \ - --path /Documents "''${NEXTCLOUD_DIR}/Documents" \ - ''${NEXTCLOUD_URL} - ''; - TimeoutStopSec = "180"; - KillMode = "process"; - KillSignal = "SIGINT"; - }; - Install.WantedBy = ["multi-user.target"]; - }; - nextcloud-sync-notes = { - Unit = { - Description = "Auto sync Nextcloud"; - After = "network-online.target"; - }; - Service = { - Type = "simple"; - EnvironmentFile = "${config.home.homeDirectory}/.nextcloud.env"; - ExecStart = '' - ${pkgs.nextcloud-client}/bin/nextcloudcmd \ - -h --non-interactive \ - --user "''${NEXTCLOUD_USER}" \ - --password "''${NEXTCLOUD_PASSWORD}" \ - --path /Notes "''${NEXTCLOUD_DIR}/Notes" \ - ''${NEXTCLOUD_URL} - ''; - TimeoutStopSec = "180"; - KillMode = "process"; - KillSignal = "SIGINT"; - }; - Install.WantedBy = ["multi-user.target"]; - }; bg-wallpaper = { Unit = { Description = "Auto refresh wallpaper"; @@ -273,16 +232,6 @@ }; }; systemd.user.timers = { - nextcloud-sync = { - Unit.Description = "Automatic sync files with Nextcloud when booted up after 5 minutes then rerun every 10 minutes"; - Timer.OnUnitActiveSec = "10min"; - Install.WantedBy = ["multi-user.target" "timers.target"]; - }; - nextcloud-sync-notes = { - Unit.Description = "Automatic sync files with Nextcloud when booted up after 5 minutes then rerun every 10 minutes"; - Timer.OnUnitActiveSec = "10min"; - Install.WantedBy = ["multi-user.target" "timers.target"]; - }; bg-wallpaper = { Unit.Description = "Automatic update of wallpaper"; Timer.OnUnitActiveSec = "10min"; |
