moved hyprland specific utils
This commit is contained in:
parent
94c02df431
commit
aac2e4cbbe
5 changed files with 31 additions and 22 deletions
users/willifan
|
@ -1,33 +1,12 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
services.udisks2.enable = true;
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
||||||
#rustup
|
#rustup
|
||||||
#probe-rs
|
#probe-rs
|
||||||
#cargo-binutils
|
#cargo-binutils
|
||||||
|
|
||||||
hyprpicker
|
|
||||||
hyprcursor
|
|
||||||
grim
|
|
||||||
slurp
|
|
||||||
wl-clipboard
|
|
||||||
playerctl
|
|
||||||
jq
|
|
||||||
|
|
||||||
pulseaudio
|
|
||||||
inotify-tools
|
|
||||||
papirus-icon-theme
|
|
||||||
eww
|
|
||||||
dconf
|
|
||||||
|
|
||||||
polkit_gnome
|
|
||||||
|
|
||||||
|
|
||||||
usbutils
|
|
||||||
unzip
|
|
||||||
btop
|
btop
|
||||||
|
|
||||||
feh
|
feh
|
||||||
|
@ -37,6 +16,6 @@
|
||||||
webcord
|
webcord
|
||||||
obsidian
|
obsidian
|
||||||
kicad
|
kicad
|
||||||
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
./mako.nix
|
./mako.nix
|
||||||
./pipewire.nix
|
./pipewire.nix
|
||||||
./polkit.nix
|
./polkit.nix
|
||||||
|
./utils.nix
|
||||||
./wofi.nix
|
./wofi.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
polkit_gnome
|
||||||
|
];
|
||||||
|
|
||||||
security.polkit.enable = true;
|
security.polkit.enable = true;
|
||||||
systemd = {
|
systemd = {
|
||||||
user.services.polkit-gnome-authentication-agent-1 = {
|
user.services.polkit-gnome-authentication-agent-1 = {
|
||||||
|
|
22
users/willifan/graphical/hyprland/utils.nix
Normal file
22
users/willifan/graphical/hyprland/utils.nix
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
{ pkgs, home-manager, ... }:
|
||||||
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
||||||
|
hyprpicker
|
||||||
|
hyprcursor
|
||||||
|
|
||||||
|
grim
|
||||||
|
slurp
|
||||||
|
wl-clipboard
|
||||||
|
playerctl
|
||||||
|
|
||||||
|
dconf
|
||||||
|
|
||||||
|
jq
|
||||||
|
|
||||||
|
pulseaudio
|
||||||
|
inotify-tools
|
||||||
|
papirus-icon-theme
|
||||||
|
eww
|
||||||
|
];
|
||||||
|
}
|
|
@ -1,5 +1,7 @@
|
||||||
{ pkgs, home-manager, ... }:
|
{ pkgs, home-manager, ... }:
|
||||||
{
|
{
|
||||||
|
services.udisks2.enable = true;
|
||||||
|
|
||||||
programs.thunar = {
|
programs.thunar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
plugins = with pkgs.xfce; [
|
plugins = with pkgs.xfce; [
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue