228 current 2024-10-22 01:13:05 24.05.20241019.a9b86fc 6.11.4 *
This commit is contained in:
parent
a83e3592b2
commit
d312b9e299
7 changed files with 47 additions and 20 deletions
|
@ -54,6 +54,10 @@
|
|||
origin = "flathub";
|
||||
appId = "dev.vencord.Vesktop";
|
||||
} # More usable discord for linux
|
||||
{
|
||||
origin = "flathub";
|
||||
appId = "io.github.Soundux";
|
||||
} # More usable discord for linux
|
||||
|
||||
#"com.obsproject.Studio" #this is another way to write it
|
||||
];
|
||||
|
|
|
@ -33,6 +33,17 @@
|
|||
];
|
||||
};
|
||||
|
||||
nuclear = {
|
||||
executable = "${pkgs.nuclear}/bin/nuclear";
|
||||
profile = "${pkgs.firejail}/etc/firejail/nuclear.profile";
|
||||
extraArgs = [
|
||||
# Enforce dark mode
|
||||
"--env=GTK_THEME=Adwaita:dark"
|
||||
# Enable system notifications
|
||||
"--dbus-user.talk=org.freedesktop.Notifications"
|
||||
];
|
||||
};
|
||||
|
||||
brave = {
|
||||
executable = "${pkgs.brave}/bin/brave";
|
||||
profile = "${pkgs.firejail}/etc/firejail/brave.profile";
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
# This is using a rec (recursive) expression to set and access XDG_BIN_HOME within the expression
|
||||
# For more on rec expressions see https://nix.dev/tutorials/first-steps/nix-language#recursive-attribute-set-rec
|
||||
environment.sessionVariables = rec {
|
||||
environment.sessionVariables = {
|
||||
SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/ssh-agent";
|
||||
};
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
inputs,
|
||||
...
|
||||
}: let
|
||||
unstable_list = [
|
||||
inputs.nixpkgs-unstable.legacyPackages."x86_64-linux".neovim
|
||||
unstable_list = with inputs.nixpkgs-unstable.legacyPackages."x86_64-linux"; [
|
||||
neovim
|
||||
];
|
||||
in {
|
||||
# also opens the TCP and UDP port from 1714 to 1764
|
||||
|
@ -57,6 +57,7 @@ in {
|
|||
file
|
||||
unzip
|
||||
tmux
|
||||
ripgrep
|
||||
qemu
|
||||
home-manager
|
||||
|
||||
|
@ -64,6 +65,7 @@ in {
|
|||
mumble
|
||||
amberol_wrapper
|
||||
amberol
|
||||
nuclear
|
||||
mpv
|
||||
zathura
|
||||
feh
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
{pkgs, ...}: {
|
||||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
# Enable the X11 windowing system.
|
||||
# You can disable this if you're only using the Wayland session.
|
||||
services.xserver.enable = false;
|
||||
|
@ -17,17 +21,23 @@
|
|||
];
|
||||
};
|
||||
};
|
||||
|
||||
# Enable the hyprland window manager with additions
|
||||
programs = {
|
||||
hyprland = {
|
||||
enable = true;
|
||||
xwayland.enable = true;
|
||||
systemd.setPath.enable = true;
|
||||
#package = pkgs.unstable.hyprland;
|
||||
};
|
||||
hyprlock = {
|
||||
enable = true;
|
||||
#package = pkgs.unstable.hyprlock;
|
||||
};
|
||||
hyprlock.enable = true;
|
||||
};
|
||||
services.hypridle.enable = true;
|
||||
services.hypridle = {
|
||||
enable = true;
|
||||
#package = pkgs.unstable.hypridle;
|
||||
};
|
||||
|
||||
# for mounting stuff, also needs a auth agent like lxqt.lxqt-policykit
|
||||
services.gvfs.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue