mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 15:04:59 +08:00
13 lines
186 B
Nix
13 lines
186 B
Nix
{ flake, ... }:
|
|
let
|
|
inherit (flake) inputs;
|
|
inherit (inputs) self;
|
|
in
|
|
{
|
|
imports = [
|
|
self.homeModules.default
|
|
self.homeModules.darwin-only
|
|
];
|
|
|
|
home.username = "srid";
|
|
}
|