Compare commits
No commits in common. "f6305533f4d8dba33264e48278c11871b7a1f17c" and "9c98f9a0a307da1635e75dd20546343effa41c26" have entirely different histories.
f6305533f4
...
9c98f9a0a3
|
@ -17,9 +17,12 @@ in {
|
|||
pkgs.protonup
|
||||
pkgs.winetricks
|
||||
pkgs.protontricks
|
||||
pkgs.lutris
|
||||
pkgs.openrct2
|
||||
pkgs.prismlauncher
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
lutris
|
||||
openrct2
|
||||
prismlauncher
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
29
home/platforms/fabian@vps/cli.nix
Normal file
29
home/platforms/fabian@vps/cli.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; {
|
||||
programs = {
|
||||
zsh = {
|
||||
enable = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
};
|
||||
git = {
|
||||
enable = true;
|
||||
userEmail = "fabian@posixlycorrect.com";
|
||||
userName = "fabian";
|
||||
};
|
||||
neovim.enable = true;
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
file
|
||||
htop
|
||||
killall
|
||||
man-pages
|
||||
man-pages-posix
|
||||
tree
|
||||
zip
|
||||
unzip
|
||||
];
|
||||
}
|
|
@ -7,8 +7,20 @@
|
|||
}:
|
||||
with lib; {
|
||||
imports = [
|
||||
./cli.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
stateVersion = "24.05"; # No tocar esto
|
||||
username = "fabian";
|
||||
homeDirectory = "/home/fabian";
|
||||
sessionVariables = {
|
||||
"EDITOR" = "nvim";
|
||||
};
|
||||
};
|
||||
|
||||
xdg.enable = true;
|
||||
|
||||
nix.registry = {
|
||||
"system".to = {
|
||||
type = "path";
|
||||
|
@ -18,29 +30,4 @@ with lib; {
|
|||
"nixpkgs".flake = flakes.nixpkgs;
|
||||
"unstable".flake = flakes.unstable;
|
||||
};
|
||||
|
||||
local = {
|
||||
baseline.enable = true;
|
||||
|
||||
services = {
|
||||
zsh.enable = true;
|
||||
};
|
||||
|
||||
apps = {
|
||||
neovim.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
home = {
|
||||
packages = with pkgs; [
|
||||
darktable
|
||||
deluge
|
||||
kdenlive
|
||||
virt-manager
|
||||
];
|
||||
|
||||
stateVersion = "24.05"; # DO NOT CHANGE
|
||||
username = "fabian";
|
||||
homeDirectory = "/home/fabian";
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue