Compare commits
2 commits
7f77ecb2de
...
e63b6d8914
Author | SHA1 | Date | |
---|---|---|---|
e63b6d8914 | |||
e9f3156e1f |
3 changed files with 90 additions and 10 deletions
26
flake.nix
26
flake.nix
|
@ -19,12 +19,16 @@
|
||||||
homeModules.marley =
|
homeModules.marley =
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports =
|
||||||
inputs.rose-pine.homeManagerModules.rose-pine
|
let
|
||||||
"${self}/modules/home/iconTheme.nix"
|
myHomeMods = "${self}/modules/home";
|
||||||
"${self}/modules/home/shellAbbrs.nix"
|
in
|
||||||
"${self}/home"
|
[
|
||||||
];
|
inputs.rose-pine.homeManagerModules.rose-pine
|
||||||
|
"${myHomeMods}/iconTheme.nix"
|
||||||
|
"${myHomeMods}/shellAbbrs.nix"
|
||||||
|
"${self}/home"
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -32,16 +36,18 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
let
|
let
|
||||||
me = "marley";
|
me = "marley";
|
||||||
home = if pkgs.stdenv.isDarwin then "Users" else "home";
|
|
||||||
inherit (self.nixos-unified.lib) mkHomeConfiguration;
|
inherit (self.nixos-unified.lib) mkHomeConfiguration;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
legacyPackages.homeConfigurations."${me}" = mkHomeConfiguration pkgs (
|
legacyPackages.homeConfigurations."${me}" = mkHomeConfiguration pkgs (
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
imports = [ self.homeModules."${me}" ];
|
imports = [
|
||||||
home.username = me;
|
"${self}/modules/home/me.nix"
|
||||||
home.homeDirectory = "/${home}/${me}";
|
self.homeModules."${me}"
|
||||||
|
];
|
||||||
|
|
||||||
|
me.name = me;
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
@ -4,6 +4,11 @@
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
me = {
|
||||||
|
username = "punkfairie";
|
||||||
|
email = "marley@punkfairie.net";
|
||||||
|
};
|
||||||
|
|
||||||
targets.genericLinux.enable = lib.mkIf pkgs.stdenv.isLinux true;
|
targets.genericLinux.enable = lib.mkIf pkgs.stdenv.isLinux true;
|
||||||
|
|
||||||
home.language.base = "en_US.UTF-8";
|
home.language.base = "en_US.UTF-8";
|
||||||
|
|
69
modules/home/me.nix
Normal file
69
modules/home/me.nix
Normal file
|
@ -0,0 +1,69 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib;
|
||||||
|
{
|
||||||
|
options = {
|
||||||
|
me = rec {
|
||||||
|
name = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = builtins.getEnv "HOME";
|
||||||
|
defaultText =
|
||||||
|
# nix
|
||||||
|
literalExpression ''
|
||||||
|
builtins.getEnv "HOME"
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Your username, for use as your home folder and login name.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
username = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = name;
|
||||||
|
defaultText = literalMD "{option}`home.me.name`";
|
||||||
|
description = ''
|
||||||
|
Your username, for external profiles.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
email = mkOption {
|
||||||
|
type = with types; nullOr str;
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
Your email.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
git.name = mkOption {
|
||||||
|
type = with types; nullOr str;
|
||||||
|
default = null;
|
||||||
|
description = ''
|
||||||
|
Your git committer name.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
git.email = mkOption {
|
||||||
|
type = with types; nullOr str;
|
||||||
|
default = email;
|
||||||
|
defaultText = literalMD "{option}`home.me.email`";
|
||||||
|
description = ''
|
||||||
|
Your git committer email.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config =
|
||||||
|
let
|
||||||
|
cfg = config.me;
|
||||||
|
homeDir = if pkgs.stdenv.isDarwin then "Users" else "home";
|
||||||
|
in
|
||||||
|
{
|
||||||
|
home.username = cfg.name;
|
||||||
|
home.homeDirectory = "/${homeDir}/${cfg.name}";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue