mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-14 19:30:19 +01:00
Some more cleanup
This commit is contained in:
parent
818d498281
commit
2cc08d39db
3 changed files with 8 additions and 12 deletions
|
|
@ -114,9 +114,6 @@
|
|||
commonHmModules = [
|
||||
self.hmModules.minimal
|
||||
./home.nix
|
||||
./extra_info.nix
|
||||
./rustdev.nix
|
||||
./git
|
||||
];
|
||||
in {
|
||||
ZeNixLaptop = nixpkgs.lib.nixosSystem rec {
|
||||
|
|
@ -169,8 +166,8 @@
|
|||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./hostconfig/ZeNixComputa/extra_info.nix
|
||||
./hostconfig/ZeNixComputa/hardware-configuration.nix
|
||||
./hostconfig/ZeNixComputa/nixos.nix
|
||||
./hostconfig/ZeNixComputa/hardware-configuration.nix
|
||||
./hostconfig/ZeNixComputa/nixos.nix
|
||||
self.nixosModules.minimal
|
||||
self.nixosModules.personal-cli
|
||||
self.nixosModules.personal-gui
|
||||
|
|
@ -199,7 +196,7 @@
|
|||
imports =
|
||||
commonHmModules
|
||||
++ [
|
||||
./hostconfig/ZeNixComputa/hm.nix
|
||||
./hostconfig/ZeNixComputa/hm.nix
|
||||
self.hmModules.personal-cli
|
||||
self.hmModules.personal-gui
|
||||
self.hmModules.gaming
|
||||
|
|
|
|||
|
|
@ -1,6 +0,0 @@
|
|||
{config, ...}: {
|
||||
programs.git = {
|
||||
userName = "traxys";
|
||||
userEmail = config.extraInfo.email;
|
||||
};
|
||||
}
|
||||
|
|
@ -2,6 +2,11 @@
|
|||
home.username = "${config.extraInfo.username}";
|
||||
home.homeDirectory = "/home/${config.extraInfo.username}";
|
||||
|
||||
programs.git = {
|
||||
userName = "traxys";
|
||||
userEmail = config.extraInfo.email;
|
||||
};
|
||||
|
||||
# This value determines the Home Manager release that your
|
||||
# configuration is compatible with. This helps avoid breakage
|
||||
# when a new Home Manager release introduces backwards
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue