From 1f9d373ddbb79b8e0ab47fa221ea041d78a23406 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sat, 5 Oct 2024 22:42:39 +0200 Subject: [PATCH 01/10] chore: Update flake inputs --- flake.lock | 36 ++++++++-------- home/alex/default.nix | 21 ++++++++-- home/alex/programs/shell/default.nix | 17 ++++++-- home/alex/services/dunst/default.nix | 9 +++- home/anne/home.nix | 13 ++++-- hosts/dregil/configuration.nix | 55 ++++++++++++++++++------- hosts/dregil/hardware-configuration.nix | 1 + 7 files changed, 105 insertions(+), 47 deletions(-) diff --git a/flake.lock b/flake.lock index 078eee3..4f74b05 100644 --- a/flake.lock +++ b/flake.lock @@ -10,11 +10,11 @@ "systems": "systems" }, "locked": { - "lastModified": 1720546205, - "narHash": "sha256-boCXsjYVxDviyzoEyAk624600f3ZBo/DKtUdvMTpbGY=", + "lastModified": 1723293904, + "narHash": "sha256-b+uqzj+Wa6xgMS9aNbX4I+sXeb5biPDi39VgvSFqFvU=", "owner": "ryantm", "repo": "agenix", - "rev": "de96bd907d5fbc3b14fc33ad37d1b9a3cb15edc6", + "rev": "f6291c5935fdc4e0bef208cfc0dcab7e3f7a1c41", "type": "github" }, "original": { @@ -90,11 +90,11 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1722273087, - "narHash": "sha256-uELMts/UTJ4jTPQbQgOnE75flmdbWm672yDvL3QLWOI=", + "lastModified": 1728148288, + "narHash": "sha256-YYmMKw6Gk0fVAjvAxWQNjecear2JfZkrXnKKBTH8YNI=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "087cf45264b4487b2848e08548bb4c5f933d460c", + "rev": "125316ab852d4d9abd771be51471b52ead9aa0c8", "type": "github" }, "original": { @@ -140,11 +140,11 @@ "systems": "systems_2" }, "locked": { - "lastModified": 1710146030, - "narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=", + "lastModified": 1726560853, + "narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=", "owner": "numtide", "repo": "flake-utils", - "rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a", + "rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a", "type": "github" }, "original": { @@ -202,11 +202,11 @@ ] }, "locked": { - "lastModified": 1722321190, - "narHash": "sha256-WeVWVRqkgrbLzmk6FfJoloJ7Xe7HWD27Pv950IUG2kI=", + "lastModified": 1728041527, + "narHash": "sha256-03liqiJtk9UP7YQHW4r8MduKCK242FQzud8iWvvlK+o=", "owner": "nix-community", "repo": "home-manager", - "rev": "4fcd54df7cbb1d79cbe81209909ee8514d6b17a4", + "rev": "509dbf8d45606b618e9ec3bbe4e936b7c5bc6c1e", "type": "github" }, "original": { @@ -287,11 +287,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1722062969, - "narHash": "sha256-QOS0ykELUmPbrrUGmegAUlpmUFznDQeR4q7rFhl8eQg=", + "lastModified": 1728018373, + "narHash": "sha256-NOiTvBbRLIOe5F6RbHaAh6++BNjsb149fGZd1T4+KBg=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "b73c2221a46c13557b1b3be9c2070cc42cf01eb3", + "rev": "bc947f541ae55e999ffdb4013441347d83b00feb", "type": "github" }, "original": { @@ -350,11 +350,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1722087241, - "narHash": "sha256-2ShmEaFi0kJVOEEu5gmlykN5dwjWYWYUJmlRTvZQRpU=", + "lastModified": 1728067476, + "narHash": "sha256-/uJcVXuBt+VFCPQIX+4YnYrHaubJSx4HoNsJVNRgANM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "8c50662509100d53229d4be607f1a3a31157fa12", + "rev": "6e6b3dd395c3b1eb9be9f2d096383a8d05add030", "type": "github" }, "original": { diff --git a/home/alex/default.nix b/home/alex/default.nix index d3db935..8e99ff4 100644 --- a/home/alex/default.nix +++ b/home/alex/default.nix @@ -1,11 +1,24 @@ -{ config, lib, pkgs, inputs, ... }: -let electron-overlay = final: prev: { electron = final.electron_25; }; -in { +{ + config, + lib, + pkgs, + inputs, + ... +}: +let + electron-overlay = final: prev: { electron = final.electron_25; }; +in +{ imports = [ ]; users.users."alex" = { isNormalUser = true; - extraGroups = [ "input" "networkmanager" "wheel" ]; + extraGroups = [ + "input" + "networkmanager" + "wheel" + "video" + ]; description = "Alexander Kobjolke"; home = "/home/alex"; shell = pkgs.zsh; diff --git a/home/alex/programs/shell/default.nix b/home/alex/programs/shell/default.nix index d5db9b4..3866337 100644 --- a/home/alex/programs/shell/default.nix +++ b/home/alex/programs/shell/default.nix @@ -1,10 +1,15 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { home.shellAliases = { suspend = "systemctl hibernate"; - nrs = "sudo nixos-rebuild switch --flake ."; - nrb = "sudo nixos-rebuild build --flake ."; + nrs = "sudo nixos-rebuild switch --flake ~/src/nixos-config"; + nrb = "sudo nixos-rebuild build --flake ~/src/nixos-config"; }; programs.zsh = { @@ -12,7 +17,11 @@ autosuggestion.enable = true; oh-my-zsh = { enable = true; - plugins = [ "git" "fzf" "fd" "z" ]; + plugins = [ + "git" + "fzf" + "z" + ]; theme = "simple"; }; }; diff --git a/home/alex/services/dunst/default.nix b/home/alex/services/dunst/default.nix index 4dacb5b..70d796a 100644 --- a/home/alex/services/dunst/default.nix +++ b/home/alex/services/dunst/default.nix @@ -1,11 +1,16 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { config.services.dunst = { enable = true; iconTheme = { name = "Adwaita"; - package = pkgs.gnome3.adwaita-icon-theme; + package = pkgs.adwaita-icon-theme; size = "16x16"; }; settings = { diff --git a/home/anne/home.nix b/home/anne/home.nix index 59a3f37..abd5ee4 100644 --- a/home/anne/home.nix +++ b/home/anne/home.nix @@ -1,4 +1,9 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { home = { @@ -7,8 +12,8 @@ packages = with pkgs; [ firefox alacritty - gnome.gnome-session - gnome.gnome-control-center + gnome-session + gnome-control-center ]; keyboard.layout = "de"; keyboard.variant = "nodeadkeys"; @@ -16,6 +21,6 @@ xsession = { enable = true; - windowManager.command = "${pkgs.gnome.gnome-session}/bin/gnome-session"; + windowManager.command = "${pkgs.gnome-session}/bin/gnome-session"; }; } diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 4a61670..76f1a29 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -2,7 +2,13 @@ # your system. Help is available in the configuration.nix(5) man page # and in the NixOS manual (accessible by running ‘nixos-help’). -{ inputs, config, pkgs, lib, ... }: +{ + inputs, + config, + pkgs, + lib, + ... +}: let nvidia-offload = pkgs.writeShellScriptBin "nvidia-offload" '' export __NV_PRIME_RENDER_OFFLOAD=1 @@ -11,7 +17,8 @@ let export __VK_LAYER_NV_optimus=NVIDIA_only exec "$@" ''; -in { +in +{ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix @@ -33,17 +40,21 @@ in { networking.hostName = "dregil"; # Define your hostname. # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. - networking.networkmanager.enable = - true; # Easiest to use and most distros use this by default. + networking.networkmanager.enable = true; # Easiest to use and most distros use this by default. networking.extraHosts = '' 127.0.0.1 localhost dregil.localdomain dregil ''; i18n = { - extraLocaleSettings = { TIME_STYLE = "iso"; }; - supportedLocales = - [ "C.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "de_DE.UTF-8/UTF-8" ]; + extraLocaleSettings = { + TIME_STYLE = "iso"; + }; + supportedLocales = [ + "C.UTF-8/UTF-8" + "en_US.UTF-8/UTF-8" + "de_DE.UTF-8/UTF-8" + ]; }; console = { @@ -66,9 +77,8 @@ in { # Enable CUPS to print documents. # services.printing.enable = true; - # Enable sound. - sound.enable = true; - hardware.pulseaudio.enable = true; + # Enable sound using pipewire + hardware.pulseaudio.enable = false; # List packages installed in system profile. To search, run: # $ nix search wget @@ -87,11 +97,17 @@ in { nix.settings.max-jobs = 3; nix.settings.cores = 4; - programs.neovim = { enable = true; }; + programs.neovim = { + enable = true; + }; - programs.steam = { enable = true; }; + programs.steam = { + enable = true; + }; - programs.zsh = { enable = true; }; + programs.zsh = { + enable = true; + }; # List services that you want to enable: @@ -100,10 +116,19 @@ in { services.blueman.enable = true; + services.pipewire.enable = true; + services.pipewire.pulse.enable = true; + # Open ports in the firewall # 22000, 21027 syncthing discovery and connectivity - networking.firewall.allowedTCPPorts = [ 5223 22000 ]; - networking.firewall.allowedUDPPorts = [ 21027 22000 ]; + networking.firewall.allowedTCPPorts = [ + 5223 + 22000 + ]; + networking.firewall.allowedUDPPorts = [ + 21027 + 22000 + ]; # Or disable the firewall altogether. # networking.firewall.enable = false; diff --git a/hosts/dregil/hardware-configuration.nix b/hosts/dregil/hardware-configuration.nix index 32acf7f..6f9e45d 100644 --- a/hosts/dregil/hardware-configuration.nix +++ b/hosts/dregil/hardware-configuration.nix @@ -95,6 +95,7 @@ hardware.nvidia = { nvidiaSettings = true; nvidiaPersistenced = true; + open = true; # modesetting.enable = true; package = config.boot.kernelPackages.nvidiaPackages.beta; From 56ec7181452f1fb3eb289357cf73425b6bc1f497 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 20 Oct 2024 10:23:13 +0200 Subject: [PATCH 02/10] dregil: Adapt to new nixos sound settings --- hosts/dregil/configuration.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 76f1a29..36a9e69 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -77,8 +77,16 @@ in # Enable CUPS to print documents. # services.printing.enable = true; - # Enable sound using pipewire - hardware.pulseaudio.enable = false; + # rtkit is optional but recommended + security.rtkit.enable = true; + services.pipewire = { + enable = true; + alsa.enable = true; + alsa.support32Bit = true; + pulse.enable = true; + # If you want to use JACK applications, uncomment this + #jack.enable = true; + }; # List packages installed in system profile. To search, run: # $ nix search wget From 564ac76edc43969e19b6b5c3fc9c339848b871ed Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 20 Oct 2024 10:27:39 +0200 Subject: [PATCH 03/10] xmonad: Allow to unfloat windows with M-y --- home/alex/programs/xmonad/config.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/home/alex/programs/xmonad/config.hs b/home/alex/programs/xmonad/config.hs index 832ab6c..7a0fcd9 100644 --- a/home/alex/programs/xmonad/config.hs +++ b/home/alex/programs/xmonad/config.hs @@ -137,6 +137,7 @@ myConfig = , ("M-a", sendMessage Balance) , ("M-S-a", sendMessage Equalize) , ("M-o", sendMessage Rotate) + , ("M-y", withFocused $ windows . W.sink) ] where -- navigate using dvorak bindings From 76cd942f9efb63ff64dccec2de2fbe77b8e00d4e Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 20 Oct 2024 10:28:23 +0200 Subject: [PATCH 04/10] xmonad: Switch bindings for scratchpads --- home/alex/programs/xmonad/config.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/alex/programs/xmonad/config.hs b/home/alex/programs/xmonad/config.hs index 7a0fcd9..4e1c6ec 100644 --- a/home/alex/programs/xmonad/config.hs +++ b/home/alex/programs/xmonad/config.hs @@ -121,8 +121,8 @@ myConfig = , ("M-C-r", WS.swapNextScreen) , ("M-S-r", WS.shiftNextScreen) , -- scratchpads - ("M-s s", namedScratchpadAction scratchpads "notes") - , ("M-s M-s", namedScratchpadAction scratchpads "shell") + ("M-s M-t", namedScratchpadAction scratchpads "shell") + , ("M-s M-s", namedScratchpadAction scratchpads "notes") , -- backlight control ("", spawn "xbacklight -dec 5") From a8f3c76c384c635890b8cc78a344e8f2659c6134 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 20 Oct 2024 10:28:52 +0200 Subject: [PATCH 05/10] emacs: Add racket support --- home/alex/programs/emacs/doom/init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/alex/programs/emacs/doom/init.el b/home/alex/programs/emacs/doom/init.el index 9ddb266..70f3b7c 100644 --- a/home/alex/programs/emacs/doom/init.el +++ b/home/alex/programs/emacs/doom/init.el @@ -159,7 +159,7 @@ ;;purescript ; javascript, but functional (python +lsp +tree-sitter +pyenv) ; beautiful is better than ugly qt ; the 'cutest' gui framework ever - ;;racket ; a DSL for DSLs + (racket +lsp +xp) ; a DSL for DSLs ;;raku ; the artist formerly known as perl6 (rest +jq) ; Emacs as a REST client ;;rst ; ReST in peace From 66f36c191bc3289abd5ff3cbe4bb58d22eb4ca7d Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 20 Oct 2024 10:29:12 +0200 Subject: [PATCH 06/10] home: Add google-chrome --- home/alex/home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/alex/home.nix b/home/alex/home.nix index b85acf2..92dcd75 100644 --- a/home/alex/home.nix +++ b/home/alex/home.nix @@ -44,6 +44,7 @@ # social jitsi-meet-electron discord # talk to other people + google-chrome # system tools uhk-agent # my keyboard From ec351d3e3f1ec2f21b3ac8b7a2ddbafe448b4e4e Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 20 Oct 2024 10:29:22 +0200 Subject: [PATCH 07/10] home: Add scummvm --- home/alex/home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/alex/home.nix b/home/alex/home.nix index 92dcd75..48e2c5b 100644 --- a/home/alex/home.nix +++ b/home/alex/home.nix @@ -54,6 +54,7 @@ lutris bottles wine64Packages.stagingFull + scummvm # reading calibre From 1246c89369e5c4bc3c09bc949d52dc24f67df131 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 20 Oct 2024 10:29:33 +0200 Subject: [PATCH 08/10] email: Add afew tagger for notmuch --- flake.lock | 42 +++++++++++++++++----------------- flake.nix | 4 ++-- home/alex/cli.nix | 2 +- home/alex/modules/email.nix | 1 + hosts/dregil/configuration.nix | 3 --- 5 files changed, 25 insertions(+), 27 deletions(-) diff --git a/flake.lock b/flake.lock index 4f74b05..14755c7 100644 --- a/flake.lock +++ b/flake.lock @@ -68,11 +68,11 @@ ] }, "locked": { - "lastModified": 1722217815, - "narHash": "sha256-8r5AJ3n8WEDw3rsZLALSuFQ5kJyWOcssNZvPxYLr2yc=", + "lastModified": 1730135292, + "narHash": "sha256-QUU1P8x42b8moaUsxJkamfcRXdyNjIq79ZThzT3CVUA=", "owner": "nix-community", "repo": "disko", - "rev": "1e6f8a7b4634fc051cc9361959bf414fcf17e094", + "rev": "0e55423bf8c241cf18676a8b8424c7eadd170ffc", "type": "github" }, "original": { @@ -90,11 +90,11 @@ "nixpkgs-stable": "nixpkgs-stable" }, "locked": { - "lastModified": 1728148288, - "narHash": "sha256-YYmMKw6Gk0fVAjvAxWQNjecear2JfZkrXnKKBTH8YNI=", + "lastModified": 1730132590, + "narHash": "sha256-5XCF16oq/NBmx/2cJ8mK1kv+kOKNULcNWP0MsgMraq8=", "owner": "nix-community", "repo": "emacs-overlay", - "rev": "125316ab852d4d9abd771be51471b52ead9aa0c8", + "rev": "64c6af10947cd17201570726eba26046e95ed58b", "type": "github" }, "original": { @@ -202,11 +202,11 @@ ] }, "locked": { - "lastModified": 1728041527, - "narHash": "sha256-03liqiJtk9UP7YQHW4r8MduKCK242FQzud8iWvvlK+o=", + "lastModified": 1730016908, + "narHash": "sha256-bFCxJco7d8IgmjfNExNz9knP8wvwbXU4s/d53KOK6U0=", "owner": "nix-community", "repo": "home-manager", - "rev": "509dbf8d45606b618e9ec3bbe4e936b7c5bc6c1e", + "rev": "e83414058edd339148dc142a8437edb9450574c8", "type": "github" }, "original": { @@ -287,11 +287,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1728018373, - "narHash": "sha256-NOiTvBbRLIOe5F6RbHaAh6++BNjsb149fGZd1T4+KBg=", + "lastModified": 1729880355, + "narHash": "sha256-RP+OQ6koQQLX5nw0NmcDrzvGL8HDLnyXt/jHhL1jwjM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "bc947f541ae55e999ffdb4013441347d83b00feb", + "rev": "18536bf04cd71abd345f9579158841376fdd0c5a", "type": "github" }, "original": { @@ -350,11 +350,11 @@ }, "nixpkgs-stable": { "locked": { - "lastModified": 1728067476, - "narHash": "sha256-/uJcVXuBt+VFCPQIX+4YnYrHaubJSx4HoNsJVNRgANM=", + "lastModified": 1729973466, + "narHash": "sha256-knnVBGfTCZlQgxY1SgH0vn2OyehH9ykfF8geZgS95bk=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "6e6b3dd395c3b1eb9be9f2d096383a8d05add030", + "rev": "cd3e8833d70618c4eea8df06f95b364b016d4950", "type": "github" }, "original": { @@ -453,11 +453,11 @@ "nixpkgs-stable": "nixpkgs-stable_2" }, "locked": { - "lastModified": 1721042469, - "narHash": "sha256-6FPUl7HVtvRHCCBQne7Ylp4p+dpP3P/OYuzjztZ4s70=", + "lastModified": 1729104314, + "narHash": "sha256-pZRZsq5oCdJt3upZIU4aslS9XwFJ+/nVtALHIciX/BI=", "owner": "cachix", "repo": "pre-commit-hooks.nix", - "rev": "f451c19376071a90d8c58ab1a953c6e9840527fd", + "rev": "3c3e88f0f544d6bb54329832616af7eb971b6be6", "type": "github" }, "original": { @@ -487,11 +487,11 @@ "nixpkgs-24_05": "nixpkgs-24_05" }, "locked": { - "lastModified": 1721121314, - "narHash": "sha256-zwc7YXga/1ppaZMWFreZykXtFwBgXodxUZiUx969r+g=", + "lastModified": 1722877200, + "narHash": "sha256-qgKDNJXs+od+1UbRy62uk7dYal3h98I4WojfIqMoGcg=", "owner": "simple-nixos-mailserver", "repo": "nixos-mailserver", - "rev": "059b50b2e729729ea00c6831124d3837c494f3d5", + "rev": "af7d3bf5daeba3fc28089b015c0dd43f06b176f2", "type": "gitlab" }, "original": { diff --git a/flake.nix b/flake.nix index 8adabfb..b83f2a4 100644 --- a/flake.nix +++ b/flake.nix @@ -62,7 +62,7 @@ tools.fourmolu = pkgs.haskellPackages.fourmolu; tools.nixfmt = pkgs.nixfmt-rfc-style; hooks = { - nixfmt.enable = true; + nixfmt-rfc-style.enable = true; fourmolu.enable = true; hpack.enable = true; hlint.enable = true; @@ -139,7 +139,7 @@ withHoogle = true; - nativeBuildInputs = with pkgs; [ + buildInputs = with pkgs; [ haskellPackages.haskell-language-server haskellPackages.fourmolu haskellPackages.hspec-discover diff --git a/home/alex/cli.nix b/home/alex/cli.nix index 9bde21f..ea5edd7 100644 --- a/home/alex/cli.nix +++ b/home/alex/cli.nix @@ -137,7 +137,7 @@ in # better ls with icons and stuff, maybe also try lsd ${myEza} = { enable = true; - icons = true; + icons = "auto"; }; starship = { diff --git a/home/alex/modules/email.nix b/home/alex/modules/email.nix index 8523b37..95e8a09 100644 --- a/home/alex/modules/email.nix +++ b/home/alex/modules/email.nix @@ -28,6 +28,7 @@ let }; in { + programs.afew.enable = true; programs.mbsync.enable = true; programs.msmtp.enable = true; programs.notmuch = { diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index 36a9e69..7d6bc7f 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -124,9 +124,6 @@ in services.blueman.enable = true; - services.pipewire.enable = true; - services.pipewire.pulse.enable = true; - # Open ports in the firewall # 22000, 21027 syncthing discovery and connectivity networking.firewall.allowedTCPPorts = [ From c3d96dc35ee13388375f7f8163cb6f2fbd5a3cf4 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Mon, 28 Oct 2024 22:24:27 +0100 Subject: [PATCH 09/10] home: Disable calibre for now --- home/alex/home.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/home/alex/home.nix b/home/alex/home.nix index 48e2c5b..68d31f3 100644 --- a/home/alex/home.nix +++ b/home/alex/home.nix @@ -57,7 +57,6 @@ scummvm # reading - calibre ]; }; From 0f8f83be8987d9ad4ea1f10c2b507a6e3fcb80a0 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Mon, 28 Oct 2024 22:27:03 +0100 Subject: [PATCH 10/10] home: Enable rclone --- home/alex/home.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/alex/home.nix b/home/alex/home.nix index 68d31f3..128f794 100644 --- a/home/alex/home.nix +++ b/home/alex/home.nix @@ -49,6 +49,7 @@ # system tools uhk-agent # my keyboard mosh # ssh via udp + rclone # gaming support lutris