mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-02-05 04:18:55 -05:00
20 lines
265 B
Nix
20 lines
265 B
Nix
{
|
|
osConfig,
|
|
config,
|
|
inputs,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [];
|
|
home = {
|
|
username = "dragneel";
|
|
homeDirectory = "/home/dragneel";
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
xdg = {
|
|
configHome = "/home/dragneel/.config";
|
|
enable = true;
|
|
};
|
|
}
|