This commit is contained in:
Miguel Palhas
2025-10-23 08:35:35 +01:00
parent c9a4f52c31
commit 4793175aa4
3 changed files with 12 additions and 12 deletions
+10 -1
View File
@@ -1,4 +1,9 @@
{ lib, config, ... }:
{
lib,
pkgs,
config,
...
}:
{
imports = [
./zsh.nix
@@ -17,6 +22,10 @@
home-manager.enable = true;
};
home.packages = with pkgs; [
impala
];
home = {
homeDirectory = lib.mkDefault "/home/${config.home.username}";
sessionPath = [ "$HOME/.local/bin" ];
+1 -1
View File
@@ -57,7 +57,7 @@
let
authorizedKeys = pkgs.fetchurl {
url = "https://github.com/naps62.keys";
sha256 = "sha256-L90zBt9vR4TqKj9wN2QsCvja4StgJsm/rdHuQSC9Mlg=";
sha256 = "sha256-93KMlLAEKEgvizcFLKjLbaJXU7oAqTrwyr2QA81K+jA=";
};
in
pkgs.lib.splitString "\n" (builtins.readFile authorizedKeys);
+1 -10
View File
@@ -4,7 +4,7 @@
networkmanager = {
enable = true;
};
wireless.iwd.enable = true;
};
services.avahi = {
@@ -12,13 +12,4 @@
nssmdns4 = true;
openFirewall = true;
};
# environment.etc.nsswitch.text = {
# hosts = [
# "files"
# "mdns4_minimal"
# "[NOTFOUND=return]"
# "dns"
# ];
# };
}