Compare commits
2 commits
9c98f9a0a3
...
f6305533f4
Author | SHA1 | Date | |
---|---|---|---|
Fabian Montero | f6305533f4 | ||
Fabian Montero | 265f1bd9c0 |
|
@ -17,12 +17,9 @@ in {
|
||||||
pkgs.protonup
|
pkgs.protonup
|
||||||
pkgs.winetricks
|
pkgs.winetricks
|
||||||
pkgs.protontricks
|
pkgs.protontricks
|
||||||
];
|
pkgs.lutris
|
||||||
|
pkgs.openrct2
|
||||||
home.packages = with pkgs; [
|
pkgs.prismlauncher
|
||||||
lutris
|
|
||||||
openrct2
|
|
||||||
prismlauncher
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
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,20 +7,8 @@
|
||||||
}:
|
}:
|
||||||
with lib; {
|
with lib; {
|
||||||
imports = [
|
imports = [
|
||||||
./cli.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
|
||||||
stateVersion = "24.05"; # No tocar esto
|
|
||||||
username = "fabian";
|
|
||||||
homeDirectory = "/home/fabian";
|
|
||||||
sessionVariables = {
|
|
||||||
"EDITOR" = "nvim";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
xdg.enable = true;
|
|
||||||
|
|
||||||
nix.registry = {
|
nix.registry = {
|
||||||
"system".to = {
|
"system".to = {
|
||||||
type = "path";
|
type = "path";
|
||||||
|
@ -30,4 +18,29 @@ with lib; {
|
||||||
"nixpkgs".flake = flakes.nixpkgs;
|
"nixpkgs".flake = flakes.nixpkgs;
|
||||||
"unstable".flake = flakes.unstable;
|
"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