mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
cleaned up a whole bunch
This commit is contained in:
parent
2f04dc0e23
commit
a959cf3e97
17 changed files with 199 additions and 220 deletions
|
|
@ -40,29 +40,22 @@
|
|||
nix.settings.system-features = ["kvm" "big-parallel" "nixos-test" "benchmark"];
|
||||
|
||||
environment = {
|
||||
systemPackages = [
|
||||
inputs.nvim-flake.packages.${pkgs.system}.default
|
||||
pkgs.bitwarden #store stuff
|
||||
pkgs.qbittorrent #steal stuff
|
||||
pkgs.pavucontrol #gui volume control
|
||||
pkgs.pcmanfm #file manager
|
||||
pkgs.librewolf #best browser
|
||||
pkgs.vlc #play stuff
|
||||
pkgs.ripgrep
|
||||
pkgs.xautoclick
|
||||
# wrap webcord to remove state file https://github.com/SpacingBat3/WebCord/issues/360
|
||||
(pkgs.symlinkJoin {
|
||||
name = "webcord-wrapper";
|
||||
nativeBuildInputs = [pkgs.makeWrapper];
|
||||
paths = [
|
||||
pkgs.webcord
|
||||
];
|
||||
postBuild = ''
|
||||
wrapProgram "$out/bin/webcord" --run 'rm -f $HOME/.config/WebCord/windowState.json'
|
||||
'';
|
||||
})
|
||||
pkgs.prismlauncher
|
||||
];
|
||||
systemPackages = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
bitwarden #store stuff
|
||||
qbittorrent #steal stuff
|
||||
pavucontrol #gui volume control
|
||||
pcmanfm #file manager
|
||||
librewolf #best browser
|
||||
vlc #play stuff
|
||||
ripgrep
|
||||
xautoclick
|
||||
webcord
|
||||
prismlauncher
|
||||
;
|
||||
inherit (inputs.nvim-flake.packages.${pkgs.system}) default;
|
||||
};
|
||||
etc = {
|
||||
"jdks/17".source = pkgs.openjdk17 + /bin;
|
||||
"jdks/8".source = pkgs.openjdk8 + /bin;
|
||||
|
|
|
|||
|
|
@ -17,16 +17,17 @@
|
|||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [
|
||||
pkgs.neovim
|
||||
pkgs.vlc
|
||||
pkgs.nomacs
|
||||
pkgs.gnome.gnome-calculator
|
||||
pkgs.xfce.xfce4-whiskermenu-plugin
|
||||
pkgs.rsync
|
||||
pkgs.pavucontrol #gui volume control
|
||||
pkgs.librewolf #best browser
|
||||
];
|
||||
environment.systemPackages = builtins.attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
neovim
|
||||
vlc
|
||||
nomacs
|
||||
rsync
|
||||
pavucontrol #gui volume control
|
||||
librewolf #best browser
|
||||
;
|
||||
};
|
||||
services.xserver.videoDrivers = ["intel"];
|
||||
networking = {
|
||||
hostName = "moms-laptop";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue