Regenerated
This commit is contained in:
+362
-308
File diff suppressed because it is too large
Load Diff
+59
-12
@@ -279,8 +279,6 @@ in
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
}
|
}
|
||||||
@@ -397,7 +395,7 @@ in {
|
|||||||
|
|
||||||
** =generated/assets/2_b_installed.conf=
|
** =generated/assets/2_b_installed.conf=
|
||||||
This is a list of additional apps to install
|
This is a list of additional apps to install
|
||||||
#+BEGIN_SRC conf :tangle generated/assets/2_b_installed.conf :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC toml :tangle generated/assets/2_b_installed.conf :noweb yes :mkdirp yes :eval never
|
||||||
#packages
|
#packages
|
||||||
bluez
|
bluez
|
||||||
blueman
|
blueman
|
||||||
@@ -2012,13 +2010,14 @@ These are config files for .config/hypr
|
|||||||
#+BEGIN_SRC conf :tangle generated/.config/hypr/exec-once.conf :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC conf :tangle generated/.config/hypr/exec-once.conf :noweb yes :mkdirp yes :eval never
|
||||||
exec-once = dbus-update-activation-environment --systemd --all
|
exec-once = dbus-update-activation-environment --systemd --all
|
||||||
exec-once = hypridleconfig/hypr/exec-once
|
exec-once = hypridleconfig/hypr/exec-once
|
||||||
exec-once = hyprpolkitagent
|
|
||||||
exec-once = systemd-run --user --scope --unit=elephant elephant
|
exec-once = systemd-run --user --scope --unit=elephant elephant
|
||||||
exec-once = waybar
|
exec-once = waybar
|
||||||
exec-once = awww-daemon & awww img -o eDP-1 ~/Wallpapers/pictures/01.jpg
|
exec-once = awww-daemon
|
||||||
|
exec-once = awww img ~/Wallpapers/pictures/01.jpg
|
||||||
exec-once = ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
exec-once = ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
||||||
exec-once = ~/.config/hypr/scripts/workspace-listener.sh
|
exec-once = ~/.config/hypr/scripts/workspace-listener.sh
|
||||||
exec-once = nextcloud
|
exec-once = /run/current-system/sw/libexec/polkit-gnome-authentication-agent-1
|
||||||
|
exec-once = nextcloud --background
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =.config/hypr/hypridle.conf=
|
** =.config/hypr/hypridle.conf=
|
||||||
@@ -3116,19 +3115,23 @@ window#waybar {
|
|||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio-slider slider {
|
/* Hide the actual slider handle */
|
||||||
min-height: 0px;
|
#pulseaudio-slider::slider {
|
||||||
min-width: 0px;
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
#pulseaudio-slider trough {
|
|
||||||
/*min-height: 80px; */
|
/* Style the trough (background bar) */
|
||||||
|
#pulseaudio-slider::trough {
|
||||||
min-width: 80px;
|
min-width: 80px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background: black;
|
background: black;
|
||||||
}
|
}
|
||||||
#pulseaudio-slider highlight {
|
|
||||||
|
/* Style the highlight (filled portion) */
|
||||||
|
#pulseaudio-slider::highlight.top {
|
||||||
min-width: 10px;
|
min-width: 10px;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
background: green;
|
background: green;
|
||||||
@@ -3400,6 +3403,50 @@ This sets the dbus implementation
|
|||||||
}
|
}
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
|
** =generated/modules/traveldroid/system/gnome-keyring.nix=
|
||||||
|
This sets the dbus implementation
|
||||||
|
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/gnome-keyring.nix :noweb yes :mkdirp yes :eval never
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
##################################################
|
||||||
|
# Core services
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
# Enable GNOME Keyring
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# PAM (auto unlock keyring on login)
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
security.pam.services = {
|
||||||
|
login.enableGnomeKeyring = true;
|
||||||
|
greetd.enableGnomeKeyring = true;
|
||||||
|
sddm.enableGnomeKeyring = true;
|
||||||
|
gdm.enableGnomeKeyring = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# Environment packages
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
polkit_gnome
|
||||||
|
seahorse
|
||||||
|
libsecret
|
||||||
|
];
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# Security / Polkit
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
security.polkit.enable = true;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/modules/traveldroid/system/login-tuigreet.nix=
|
** =generated/modules/traveldroid/system/login-tuigreet.nix=
|
||||||
This sets up tuigreeter which is not fancy but imo fits the aesthetic I am aiming for
|
This sets up tuigreeter which is not fancy but imo fits the aesthetic I am aiming for
|
||||||
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/login-tuigreet.nix :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/login-tuigreet.nix :noweb yes :mkdirp yes :eval never
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
exec-once = dbus-update-activation-environment --systemd --all
|
exec-once = dbus-update-activation-environment --systemd --all
|
||||||
exec-once = hypridleconfig/hypr/exec-once
|
exec-once = hypridleconfig/hypr/exec-once
|
||||||
exec-once = hyprpolkitagent
|
|
||||||
exec-once = systemd-run --user --scope --unit=elephant elephant
|
exec-once = systemd-run --user --scope --unit=elephant elephant
|
||||||
exec-once = waybar
|
exec-once = waybar
|
||||||
exec-once = awww-daemon & awww img -o eDP-1 ~/Wallpapers/pictures/01.jpg
|
exec-once = awww-daemon
|
||||||
|
exec-once = awww img ~/Wallpapers/pictures/01.jpg
|
||||||
exec-once = ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
exec-once = ~/.config/hypr/scripts/set-workspace-wallpaper.sh
|
||||||
exec-once = ~/.config/hypr/scripts/workspace-listener.sh
|
exec-once = ~/.config/hypr/scripts/workspace-listener.sh
|
||||||
exec-once = nextcloud
|
exec-once = /run/current-system/sw/libexec/polkit-gnome-authentication-agent-1
|
||||||
|
exec-once = nextcloud --background
|
||||||
|
|||||||
@@ -252,19 +252,23 @@ window#waybar {
|
|||||||
padding: 0 10px;
|
padding: 0 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pulseaudio-slider slider {
|
/* Hide the actual slider handle */
|
||||||
min-height: 0px;
|
#pulseaudio-slider::slider {
|
||||||
min-width: 0px;
|
min-height: 0;
|
||||||
|
min-width: 0;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
#pulseaudio-slider trough {
|
|
||||||
/*min-height: 80px; */
|
/* Style the trough (background bar) */
|
||||||
|
#pulseaudio-slider::trough {
|
||||||
min-width: 80px;
|
min-width: 80px;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background: black;
|
background: black;
|
||||||
}
|
}
|
||||||
#pulseaudio-slider highlight {
|
|
||||||
|
/* Style the highlight (filled portion) */
|
||||||
|
#pulseaudio-slider::highlight.top {
|
||||||
min-width: 10px;
|
min-width: 10px;
|
||||||
border-radius: 30px;
|
border-radius: 30px;
|
||||||
background: green;
|
background: green;
|
||||||
|
|||||||
@@ -35,8 +35,6 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,39 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
##################################################
|
||||||
|
# Core services
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
# Enable GNOME Keyring
|
||||||
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# PAM (auto unlock keyring on login)
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
security.pam.services = {
|
||||||
|
login.enableGnomeKeyring = true;
|
||||||
|
greetd.enableGnomeKeyring = true;
|
||||||
|
sddm.enableGnomeKeyring = true;
|
||||||
|
gdm.enableGnomeKeyring = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# Environment packages
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
polkit_gnome
|
||||||
|
seahorse
|
||||||
|
libsecret
|
||||||
|
];
|
||||||
|
|
||||||
|
##################################################
|
||||||
|
# Security / Polkit
|
||||||
|
##################################################
|
||||||
|
|
||||||
|
security.polkit.enable = true;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user