Signed-off-by: Alex Stan <stan.alexandru@ichb.ro>
This commit is contained in:
Alex Stan 2023-05-14 21:42:09 +03:00
parent ad43b54262
commit af2efc793e
2 changed files with 11 additions and 2 deletions

View file

@ -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"
];
}
];
};

View file

@ -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" ];