mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2025-12-10 18:59:40 +01:00
bweh
This commit is contained in:
parent
268cf2ce9b
commit
3cb7360f5e
7 changed files with 73 additions and 51 deletions
|
|
@ -18,18 +18,16 @@ with lib;
|
|||
};
|
||||
config.services = {
|
||||
displayManager = {
|
||||
gdm = {
|
||||
enable = true;
|
||||
banner = "Meow :3";
|
||||
autoLogin.delay = cfg.autoLogin.delay;
|
||||
};
|
||||
autoLogin = {
|
||||
enable = cfg.autoLogin.enable;
|
||||
user = "jade";
|
||||
};
|
||||
defaultSession = "niri";
|
||||
};
|
||||
xserver.displayManager.gdm = {
|
||||
enable = true;
|
||||
banner = "Meow :3";
|
||||
autoLogin = {
|
||||
delay = cfg.autoLogin.delay;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ let
|
|||
hash = "sha256-SzAuVFEy56svasO3+1p6ysBRrIQd0UZX++/P4ZuwWm0=";
|
||||
};
|
||||
|
||||
useFetchCargoVendor = true;
|
||||
cargoHash = "sha256-QVxlkE+sq4U048LnshI/tq6HInKiSgjQLAdR+27/wEI=";
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
|||
|
|
@ -10,11 +10,12 @@
|
|||
hide-after-inactive-ms = 10000;
|
||||
};
|
||||
|
||||
animations.window-open.easing = {
|
||||
curve = "linear";
|
||||
duration-ms = 230;
|
||||
};
|
||||
animations.shaders.window-open = builtins.readFile ./shaders/glitch-open.frag;
|
||||
# animations.window-open = {
|
||||
# kind = "easing";
|
||||
# curve = "linear";
|
||||
# duration-ms = 230;
|
||||
# };
|
||||
# animations.window-open.custom-shader = builtins.readFile ./shaders/glitch-open.frag;
|
||||
|
||||
layout = {
|
||||
gaps = 15; # :GAPS:- gaps = %GAPS%;-:#
|
||||
|
|
|
|||
|
|
@ -15,7 +15,6 @@ let
|
|||
rev = "4480c4eda223b98899b0fbd926bc34f7bd0e1a18";
|
||||
sha256 = "sha256-BxSrphgW1n465FX6bKVkq6O0XE2JqanfSYlsGwWUWkQ=";
|
||||
};
|
||||
useFetchCargoVendor = true;
|
||||
cargoHash = "sha256-O1rJ48m8Q7kZABw/UNpmUT7FFBWQedo6CuV+NX9kDt8=";
|
||||
nativeBuildInputs = [ pkgs.pkg-config ];
|
||||
buildInputs = [ pkgs.libevdev ];
|
||||
|
|
|
|||
|
|
@ -14,15 +14,11 @@
|
|||
{
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Schrottkatze";
|
||||
userEmail = "git@schrottkatze.de";
|
||||
aliases = {
|
||||
a = "add";
|
||||
c = "commit";
|
||||
ca = "commit --all";
|
||||
p = "push";
|
||||
pl = "pull";
|
||||
s = "status";
|
||||
settings = {
|
||||
user = {
|
||||
name = "Schrottkatze";
|
||||
email = "git@schrottkatze.de";
|
||||
};
|
||||
};
|
||||
signing = {
|
||||
format = "ssh";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue