#1 hater of infinite recursion
This commit is contained in:
parent
39e5c40e12
commit
f66aa330c3
31 changed files with 946 additions and 851 deletions
|
|
@ -1,9 +1,5 @@
|
|||
{ config, inputs, pkgs, ... }:
|
||||
let
|
||||
unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.stdenv.hostPlatform.system};
|
||||
in
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
{upkgs, ...}: {
|
||||
home.packages = with upkgs; [
|
||||
libnotify
|
||||
];
|
||||
|
||||
|
|
@ -12,21 +8,21 @@ in
|
|||
settings = {
|
||||
global = {
|
||||
monitor = "DP-3"; # second monitor
|
||||
origin = "top-left";
|
||||
layer = "top"; # above windows, below fullscreen
|
||||
offset = "(16, 24)";
|
||||
origin = "top-left";
|
||||
layer = "top"; # above windows, below fullscreen
|
||||
offset = "(16, 24)";
|
||||
|
||||
padding = 4;
|
||||
gap_size = 4;
|
||||
frame_width = 2;
|
||||
padding = 4;
|
||||
gap_size = 4;
|
||||
frame_width = 2;
|
||||
|
||||
font = "DepartureMono Nerd Font 8";
|
||||
font = "DepartureMono Nerd Font 8";
|
||||
|
||||
corner_radius = 12;
|
||||
icon_corner_radius = 12;
|
||||
corner_radius = 12;
|
||||
icon_corner_radius = 12;
|
||||
|
||||
progress_bar = true;
|
||||
progress_bar_height = 16;
|
||||
progress_bar = true;
|
||||
progress_bar_height = 16;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
|
|
@ -1,20 +1,19 @@
|
|||
{ config, inputs, lib, pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
{upkgs, ...}: {
|
||||
home.packages = with upkgs; [
|
||||
keepassxc
|
||||
];
|
||||
|
||||
systemd.user.services.keepassxc = {
|
||||
Unit = {
|
||||
Description = "KeePassXC password manager";
|
||||
After = [ "graphical-session-pre.target" ];
|
||||
PartOf = [ "graphical-session.target" ];
|
||||
After = ["graphical-session-pre.target"];
|
||||
PartOf = ["graphical-session.target"];
|
||||
};
|
||||
Service = {
|
||||
Description = "${pkgs.keepassxc}/bin/keepassxc";
|
||||
Description = "${upkgs.keepassxc}/bin/keepassxc";
|
||||
Restart = "on-failure";
|
||||
};
|
||||
Install.WantedBy = [ "graphical-session.target" ];
|
||||
Install.WantedBy = ["graphical-session.target"];
|
||||
};
|
||||
|
||||
xdg.configFile."keepassxc/keepassxc.ini" = {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
{ inputs, lib, pkgs, config, osConfig, ... }:
|
||||
{
|
||||
{
|
||||
config,
|
||||
osConfig,
|
||||
...
|
||||
}: {
|
||||
# writes ./client.conf to ~/.config/pulse/client.conf
|
||||
xdg.configFile."pulse/client.conf".text = builtins.replaceStrings
|
||||
xdg.configFile."pulse/client.conf".text =
|
||||
builtins.replaceStrings
|
||||
["{uid}"]
|
||||
# make sure ur user id is set!!!
|
||||
["${toString osConfig.users.users.${config.home.username}.uid}"]
|
||||
|
|
|
|||
|
|
@ -1,5 +1,4 @@
|
|||
{ inputs, lib, pkgs, config, ... }:
|
||||
{
|
||||
{...}: {
|
||||
# writes ./config to ~/.config/wireplumber
|
||||
xdg.configFile."wireplumber" = {
|
||||
recursive = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue