Skip to content

Commit

Permalink
home: generalize
Browse files Browse the repository at this point in the history
  • Loading branch information
srid committed Sep 30, 2024
1 parent 1123c98 commit 56c93e3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions configurations/home/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
{ flake, ... }:
let
inherit (flake.inputs) self;
inherit (flake.config) me;
in
{
imports = [
self.homeModules.default
self.homeModules.linux-only
];
home.username = "srid";
home.homeDirectory = "/home/srid";
home.username = me.username;
home.homeDirectory = "/home/${me.username}";
}

0 comments on commit 56c93e3

Please sign in to comment.