2024-10-19 00:29:39 +00:00
|
|
|
{
|
2024-10-21 02:17:56 +00:00
|
|
|
pkgs,
|
2024-11-13 05:31:22 +00:00
|
|
|
lib,
|
2024-10-21 02:17:56 +00:00
|
|
|
...
|
2024-11-02 22:35:48 +00:00
|
|
|
}:
|
|
|
|
{
|
2024-11-14 05:11:48 +00:00
|
|
|
me = {
|
|
|
|
username = "punkfairie";
|
|
|
|
email = "marley@punkfairie.net";
|
|
|
|
};
|
|
|
|
|
2024-11-13 05:31:22 +00:00
|
|
|
targets.genericLinux.enable = lib.mkIf pkgs.stdenv.isLinux true;
|
2024-11-03 05:21:19 +00:00
|
|
|
|
2024-10-29 02:24:11 +00:00
|
|
|
home.language.base = "en_US.UTF-8";
|
|
|
|
|
2024-10-19 01:15:55 +00:00
|
|
|
# Tell nix what version it is.
|
|
|
|
nix.package = pkgs.nix;
|
|
|
|
|
2024-11-04 05:34:46 +00:00
|
|
|
nix = {
|
|
|
|
# Enable flakes.
|
|
|
|
settings.experimental-features = [
|
|
|
|
"nix-command"
|
|
|
|
"flakes"
|
|
|
|
];
|
|
|
|
|
|
|
|
# Disable that annoying "git tree is dirty" warning.
|
|
|
|
extraOptions = ''
|
|
|
|
warn-dirty = false
|
|
|
|
'';
|
|
|
|
|
|
|
|
# Garbage collection.
|
|
|
|
gc.automatic = true;
|
|
|
|
};
|
2024-10-19 00:49:35 +00:00
|
|
|
|
2024-11-03 05:21:19 +00:00
|
|
|
xdg.configFile."nixpkgs/config.nix".text = # nix
|
|
|
|
''
|
|
|
|
{
|
|
|
|
allowUnfree = true;
|
|
|
|
}
|
|
|
|
'';
|
2024-10-26 02:53:54 +00:00
|
|
|
|
2024-10-28 02:41:02 +00:00
|
|
|
# Autostart wanted systemd services.
|
|
|
|
systemd.user.startServices = true;
|
|
|
|
|
2024-10-21 02:17:56 +00:00
|
|
|
imports = [
|
2024-11-03 21:18:49 +00:00
|
|
|
./appearance
|
2024-11-04 05:41:00 +00:00
|
|
|
./languages
|
2024-11-03 22:50:02 +00:00
|
|
|
./profile
|
2024-11-03 18:33:32 +00:00
|
|
|
./programs
|
|
|
|
./services
|
|
|
|
./xorg
|
2024-10-21 02:17:56 +00:00
|
|
|
];
|
|
|
|
|
2024-10-19 00:29:39 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# You should not change this value, even if you update Home Manager. If you do
|
|
|
|
# want to update the value, then make sure to first check the Home Manager
|
|
|
|
# release notes.
|
2024-11-13 05:31:22 +00:00
|
|
|
# home.stateVersion = "24.05"; # Please read the comment before changing.
|
|
|
|
# ((this is set in flake.nix but I wanted to keep the explanation here.))
|
2024-10-19 00:29:39 +00:00
|
|
|
|
|
|
|
# Let home Manager install and manage itself.
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
}
|