mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-22 21:05:22 +08:00
move uday oow
This commit is contained in:
parent
1edb6de8ce
commit
5da95cf5d2
2 changed files with 14 additions and 13 deletions
14
flake.nix
14
flake.nix
|
|
@ -49,20 +49,8 @@
|
|||
[
|
||||
./systems/hetzner/ax41.nix
|
||||
./nixos/server/harden.nix
|
||||
|
||||
# Temporarily sharing with Uday.
|
||||
{
|
||||
users.users.uday.isNormalUser = true;
|
||||
home-manager.users."uday" = {
|
||||
imports = [
|
||||
self.homeModules.common-linux
|
||||
(import ./home/git.nix {
|
||||
userName = "Uday Kiran";
|
||||
userEmail = "udaycruise2903@gmail.com";
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
(import ./uday.nix { inherit self; })
|
||||
];
|
||||
};
|
||||
# Configurations for my only[^1] macOS machine (using nix-darwin)
|
||||
|
|
|
|||
13
uday.nix
Normal file
13
uday.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{ self }:
|
||||
{
|
||||
users.users.uday.isNormalUser = true;
|
||||
home-manager.users."uday" = {
|
||||
imports = [
|
||||
self.homeModules.common-linux
|
||||
(import ./home/git.nix {
|
||||
userName = "Uday Kiran";
|
||||
userEmail = "udaycruise2903@gmail.com";
|
||||
})
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue