laptop config, flakes config
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
{ config, lib, pkgs, username, ... }:
|
||||
|
||||
{
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
programs.keychain.enable = true;
|
||||
programs.keychain.enableZshIntegration = true;
|
||||
|
||||
programs.direnv.enable = true;
|
||||
programs.direnv.enableZshIntegration = true;
|
||||
|
||||
home = {
|
||||
username = "${username}";
|
||||
homeDirectory = "/home/${username}";
|
||||
stateVersion = "23.05";
|
||||
|
||||
file.".config/nixpkgs/config.nix" = {
|
||||
text = ''
|
||||
{ allowUnfree = true; }
|
||||
'';
|
||||
};
|
||||
|
||||
sessionPath = [
|
||||
"$HOME/go/bin"
|
||||
"$HOME/.local/bin"
|
||||
"$HOME/bin"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user