Generate flake and wire up default config

This commit is contained in:
2022-12-29 00:59:30 +00:00
commit a7f86f9935
4 changed files with 240 additions and 0 deletions

20
users/jordan/home.nix Normal file
View File

@ -0,0 +1,20 @@
{ config, pkgs, ... }:
{
programs.home-manager.enable = true;
home.username = "jordan";
home.homeDirectory = "/home/jordan";
home.stateVersion = "22.11";
programs.gpg.enable = true;
home.packages = with pkgs; [
firefox-wayland
git
pass
neovim
wl-clipboard
];
}