19 lines
327 B
Nix
19 lines
327 B
Nix
{ pkgs, ... }: {
|
|
# Noting for other places
|
|
# home.stateVersion = "24.11";
|
|
|
|
imports = [
|
|
./programs/vim.nix
|
|
./programs/gpg.nix
|
|
./programs/git.nix
|
|
./programs/bash.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
sops
|
|
];
|
|
|
|
# Self-hosting
|
|
programs.bash.enable = true;
|
|
programs.home-manager.enable = true;
|
|
}
|