diff --git a/flake.nix b/flake.nix index 59acbb7..0b7f586 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,10 @@ ./hosts/ultrapc/configuration.nix { environment.etc."nix/inputs/nixpkgs".source = nixpkgs.outPath; - nix.nixPath = [ "nixpkgs=/etc/nix/inputs/nixpkgs" ]; + nix.nixPath = [ + "nixpkgs=/etc/nix/inputs/nixpkgs" + "nixos-config=/home/ultra/.nixdotfiles" + ]; } ]; }; diff --git a/hosts/ultrapc/configuration.nix b/hosts/ultrapc/configuration.nix index 854e7e2..e9629cb 100644 --- a/hosts/ultrapc/configuration.nix +++ b/hosts/ultrapc/configuration.nix @@ -133,7 +133,12 @@ in { NIX_AUTO_RUN = "!"; }; }; - programs.fish.enable = true; + programs = { + fish.enable = true; + kdeconnect = { + enable = true; + }; + }; # programs.nushell.enable = true; # users.defaultUserShell = pkgs.zsh; @@ -232,6 +237,7 @@ in { printing = { enable = true; }; + twingate.enable = true; }; nix.settings.experimental-features = [ "nix-command" "flakes" ];