list concatenation
This commit is contained in:
parent
e05e6fcb45
commit
181babfa2a
17
gnome.nix
17
gnome.nix
@ -36,16 +36,11 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
style = "adwaita";
|
style = "adwaita";
|
||||||
};
|
};
|
||||||
users.users.jawz.packages =
|
users.users.jawz.packages = builtins.attrValues {
|
||||||
builtins.attrValues {
|
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
adw-gtk3 # theme legacy applications
|
# adw-gtk3 # theme legacy applications
|
||||||
gnome-tweaks # tweaks for the gnome desktop environment
|
|
||||||
papirus-icon-theme # icon theme
|
|
||||||
libgda # for pano shell extension
|
libgda # for pano shell extension
|
||||||
;
|
;
|
||||||
}
|
|
||||||
++ builtins.attrValues {
|
|
||||||
inherit (pkgs.gnomeExtensions)
|
inherit (pkgs.gnomeExtensions)
|
||||||
appindicator # applets for open applications
|
appindicator # applets for open applications
|
||||||
tactile # window manager
|
tactile # window manager
|
||||||
@ -53,8 +48,8 @@
|
|||||||
gamemode-shell-extension # I guess I'm a gamer now?
|
gamemode-shell-extension # I guess I'm a gamer now?
|
||||||
burn-my-windows # special effects for when closing windows
|
burn-my-windows # special effects for when closing windows
|
||||||
;
|
;
|
||||||
}
|
inherit (inputs.jawz-scripts.packages.x86_64-linux)
|
||||||
++ [
|
pano
|
||||||
inputs.jawz-scripts.packages.x86_64-linux.pano
|
;
|
||||||
];
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,8 +19,7 @@
|
|||||||
platformOptimizations.enable = true;
|
platformOptimizations.enable = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
users.users.jawz.packages =
|
users.users.jawz.packages = builtins.attrValues {
|
||||||
builtins.attrValues {
|
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
shipwright # zelda OoT port
|
shipwright # zelda OoT port
|
||||||
mangohud # fps & stats overlay
|
mangohud # fps & stats overlay
|
||||||
@ -39,8 +38,6 @@
|
|||||||
snes9x-gtk # snes
|
snes9x-gtk # snes
|
||||||
ryujinx # switch
|
ryujinx # switch
|
||||||
;
|
;
|
||||||
}
|
|
||||||
++ builtins.attrValues {
|
|
||||||
inherit (inputs.jawz-scripts.packages.x86_64-linux)
|
inherit (inputs.jawz-scripts.packages.x86_64-linux)
|
||||||
polymc # minecraft launcher
|
polymc # minecraft launcher
|
||||||
citra # 3Ds emulator
|
citra # 3Ds emulator
|
||||||
|
|||||||
@ -20,14 +20,11 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
users.users.jawz.packages =
|
users.users.jawz.packages = builtins.attrValues {
|
||||||
builtins.attrValues {
|
|
||||||
inherit (inputs.jawz-scripts.packages.x86_64-linux)
|
inherit (inputs.jawz-scripts.packages.x86_64-linux)
|
||||||
vdhcoapp # video download helper assistant
|
vdhcoapp # video download helper assistant
|
||||||
talk # nextcloud talk client
|
talk # nextcloud talk client
|
||||||
;
|
;
|
||||||
}
|
|
||||||
++ builtins.attrValues {
|
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
thunderbird # email client
|
thunderbird # email client
|
||||||
warp # transfer files with based ppl
|
warp # transfer files with based ppl
|
||||||
@ -39,7 +36,6 @@
|
|||||||
nicotine-plus # remember Ares?
|
nicotine-plus # remember Ares?
|
||||||
vesktop # screen share with audio discord
|
vesktop # screen share with audio discord
|
||||||
discord-ptb # :3
|
discord-ptb # :3
|
||||||
teamspeak5_client # ppl say they will use this...?
|
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@ -10,14 +10,16 @@
|
|||||||
home-manager.users.jawz.xdg.configFile."python/pythonrc".source = ../../dotfiles/pythonrc;
|
home-manager.users.jawz.xdg.configFile."python/pythonrc".source = ../../dotfiles/pythonrc;
|
||||||
environment.variables.PYTHONSTARTUP = "\${XDG_CONFIG_HOME}/python/pythonrc";
|
environment.variables.PYTHONSTARTUP = "\${XDG_CONFIG_HOME}/python/pythonrc";
|
||||||
users.users.jawz.packages =
|
users.users.jawz.packages =
|
||||||
let
|
builtins.attrValues {
|
||||||
packages = builtins.attrValues {
|
|
||||||
inherit (pkgs)
|
inherit (pkgs)
|
||||||
pipenv # python development workflow for humans
|
pipenv # python development workflow for humans
|
||||||
pyright # LSP
|
pyright # LSP
|
||||||
;
|
;
|
||||||
};
|
}
|
||||||
pythonPackages = builtins.attrValues {
|
++ [
|
||||||
|
(pkgs.python3.withPackages (
|
||||||
|
_ps:
|
||||||
|
builtins.attrValues {
|
||||||
inherit (pkgs.python3Packages)
|
inherit (pkgs.python3Packages)
|
||||||
black # Python code formatter
|
black # Python code formatter
|
||||||
editorconfig # follow rules of contributin
|
editorconfig # follow rules of contributin
|
||||||
@ -27,11 +29,8 @@
|
|||||||
pylint # bug and style checker for python
|
pylint # bug and style checker for python
|
||||||
speedtest-cli # check internet speed from the comand line
|
speedtest-cli # check internet speed from the comand line
|
||||||
;
|
;
|
||||||
};
|
}
|
||||||
in
|
))
|
||||||
packages
|
|
||||||
++ [
|
|
||||||
(pkgs.python3.withPackages (_ps: pythonPackages))
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user