base: add existing config

This commit is contained in:
luxzi 2024-07-24 19:51:43 -04:00
commit f3b5d32942
No known key found for this signature in database
GPG key ID: C90237A70F2FDD53
34 changed files with 437 additions and 0 deletions

14
home-manager/home.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
imports =
[
./packages/packages.nix
];
programs.home-manager.enable = true;
home.username = "luxzi";
home.homeDirectory = "/home/luxzi";
home.stateVersion = "24.05";
}