feat: add "ubuntu" config for containers
This commit is contained in:
parent
69f965cdc8
commit
4be4a7979f
1 changed files with 21 additions and 0 deletions
21
flake.nix
21
flake.nix
|
@ -59,6 +59,27 @@
|
||||||
vimwikiPath = "~/vimwiki";
|
vimwikiPath = "~/vimwiki";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"ubuntu" = home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
|
|
||||||
|
modules = [
|
||||||
|
./shell
|
||||||
|
./git
|
||||||
|
./gpg
|
||||||
|
./neovim
|
||||||
|
./horsch.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
extraSpecialArgs = {
|
||||||
|
user = "ubuntu";
|
||||||
|
userName = "Michael Mandl";
|
||||||
|
userEmail = "michael.mandl@horsch.com";
|
||||||
|
gpgSigningKey = "088ED38F036C7AF2";
|
||||||
|
gpgSSHKeys = [ "AEB2BF3FF9CF9529E9A3C6F1A202D21686FF9278" ];
|
||||||
|
theme = "dark";
|
||||||
|
vimwikiPath = "~/vimwiki";
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue