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