mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
Linked my nixos HM config to the shared one
This commit is contained in:
parent
d53f46d245
commit
b4cd2ebb08
@ -55,7 +55,15 @@
|
||||
];
|
||||
|
||||
# Git config
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
settings = {
|
||||
user = {
|
||||
email = "mateialex@outlook.fr";
|
||||
name = "Alexandre";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -1,14 +1,17 @@
|
||||
{ config, pkgs, inputs, ... }:
|
||||
|
||||
{
|
||||
let
|
||||
commonHome = import ../common/home.nix {
|
||||
inherit config pkgs inputs;
|
||||
username = "alex";
|
||||
homeDir = "/home/alex";
|
||||
};
|
||||
in
|
||||
commonHome // {
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
# manage.
|
||||
home.username = "alex";
|
||||
home.homeDirectory = "/home/alex";
|
||||
|
||||
imports = [
|
||||
inputs.spicetify-nix.homeManagerModules.spicetify
|
||||
../../modules/home-manager/spicetify.nix
|
||||
../../modules/home-manager/hyprland.nix
|
||||
];
|
||||
|
||||
|
||||
@ -40,17 +43,6 @@
|
||||
};
|
||||
};
|
||||
|
||||
# Git
|
||||
programs.git = {
|
||||
enable = true;
|
||||
settings = {
|
||||
user = {
|
||||
email = "mateialex@outlook.fr";
|
||||
name = "Alexandre";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# 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 incompatible changes.
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user