mirror of
https://git.sr.ht/~neverness/ultima
synced 2024-12-29 17:53:53 +00:00
update
This commit is contained in:
parent
47fcb7a971
commit
66738d23b8
|
@ -7,7 +7,8 @@
|
|||
|
||||
# FAST CP & RM
|
||||
cp = "${fuc}/bin/cpz";
|
||||
rm = "${fuc}/bin/rmz";
|
||||
rmf = "${fuc}/bin/rmz";
|
||||
rm = "trash put";
|
||||
|
||||
# USEFUL
|
||||
ca = "cava";
|
||||
|
|
|
@ -22,33 +22,25 @@ in {
|
|||
imports = [ ./torrserver ];
|
||||
config = mkMerge [
|
||||
(mkIf cfg.common.enable {
|
||||
environment = {
|
||||
systemPackages = [ ] ++ cfg.pkgs;
|
||||
pathsToLink = [ "/share/zsh" ];
|
||||
};
|
||||
environment.systemPackages = [ ] ++ cfg.pkgs;
|
||||
programs = {
|
||||
light = True;
|
||||
nano = False;
|
||||
light = True;
|
||||
git = True // { package = pkgs.gitMinimal; };
|
||||
nh = True // {
|
||||
flake = flakeDir;
|
||||
clean = True // { extraArgs = "--keep-since 3d --keep 3"; };
|
||||
};
|
||||
nh = True // { flake = flakeDir; };
|
||||
};
|
||||
})
|
||||
(mkIf cfg.hyprland.enable {
|
||||
programs = {
|
||||
hyprland = with pkgs;
|
||||
let h = inputs.hyprland.packages.${system};
|
||||
in True // {
|
||||
package = h.hyprland;
|
||||
portalPackage = h.xdg-desktop-portal-hyprland;
|
||||
};
|
||||
};
|
||||
programs.hyprland = with inputs.hyprland.packages.${pkgs.system};
|
||||
True // {
|
||||
package = hyprland;
|
||||
portalPackage = xdg-desktop-portal-hyprland;
|
||||
};
|
||||
})
|
||||
(mkIf cfg.sway.enable {
|
||||
programs = { sway = True // { package = pkgs.swayfx; }; };
|
||||
programs.sway = True // { package = pkgs.swayfx; };
|
||||
})
|
||||
(mkIf cfg.hamachi.enable { programs.haguichi = True; })
|
||||
(mkIf cfg.steam.enable {
|
||||
environment.systemPackages = with pkgs; [ protonup-qt ];
|
||||
hardware.xone = True;
|
||||
|
@ -57,6 +49,7 @@ in {
|
|||
gamemode = True;
|
||||
steam = True // { # GAMING
|
||||
gamescopeSession = True;
|
||||
remotePlay.openFirewall = true;
|
||||
extraCompatPackages = with pkgs; [ proton-ge-bin ];
|
||||
package = pkgs.steam.override {
|
||||
extraEnv = {
|
||||
|
@ -68,7 +61,6 @@ in {
|
|||
};
|
||||
};
|
||||
})
|
||||
(mkIf cfg.hamachi.enable { programs.haguichi = True; })
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue