Compare commits
6 commits
9e11d4bf7f
...
7b585dec5a
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b585dec5a | |||
| 70e04e428e | |||
| bdf0cecf54 | |||
| 6f805ea6a4 | |||
| e81a7875ed | |||
| e16f304745 |
4 changed files with 60 additions and 0 deletions
28
flake.nix
28
flake.nix
|
|
@ -152,5 +152,33 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
homeConfigurations = {
|
||||||
|
jufr2 = let
|
||||||
|
username = "jufr2";
|
||||||
|
system = "x86_64-linux";
|
||||||
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
in
|
||||||
|
home-manager.lib.homeManagerConfiguration {
|
||||||
|
inherit pkgs;
|
||||||
|
|
||||||
|
extraSpecialArgs = {
|
||||||
|
inherit username;
|
||||||
|
};
|
||||||
|
|
||||||
|
modules = [
|
||||||
|
home/core.nix
|
||||||
|
|
||||||
|
home/targets/genericLinux.nix
|
||||||
|
|
||||||
|
modules/nix.nix
|
||||||
|
home/neovim/default.nix
|
||||||
|
home/zsh/default.nix
|
||||||
|
home/cli.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
24
home/cli.nix
Normal file
24
home/cli.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
pkgs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
wget
|
||||||
|
curl
|
||||||
|
git
|
||||||
|
neofetch
|
||||||
|
tealdeer
|
||||||
|
|
||||||
|
pdfgrep
|
||||||
|
pdftk
|
||||||
|
p7zip
|
||||||
|
];
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
htop.enable = true;
|
||||||
|
git.enable = true;
|
||||||
|
bat.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
7
home/targets/genericLinux.nix
Normal file
7
home/targets/genericLinux.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
|
||||||
|
targets.genericLinux.enable = true;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
@ -5,6 +5,7 @@
|
||||||
}: {
|
}: {
|
||||||
# do garbage collection weekly to keep disk usage low
|
# do garbage collection weekly to keep disk usage low
|
||||||
nix = {
|
nix = {
|
||||||
|
package = pkgs.nix;
|
||||||
settings = {
|
settings = {
|
||||||
experimental-features = ["nix-command" "flakes"];
|
experimental-features = ["nix-command" "flakes"];
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue