mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-04 03:53:35 +08:00
13 lines
228 B
Nix
13 lines
228 B
Nix
# My Ubuntu VM (Parallels)
|
|
{ flake, ... }:
|
|
let
|
|
inherit (flake.inputs) self;
|
|
in
|
|
{
|
|
imports = [
|
|
self.homeModules.default
|
|
self.homeModules.linux-only
|
|
];
|
|
home.username = "srid";
|
|
home.homeDirectory = "/home/srid";
|
|
}
|