diesdas
This commit is contained in:
parent
47a684d78f
commit
7dd4cb58fe
10 changed files with 53 additions and 23 deletions
24
flake.lock
generated
24
flake.lock
generated
|
|
@ -28,11 +28,11 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1734366194,
|
||||
"narHash": "sha256-vykpJ1xsdkv0j8WOVXrRFHUAdp9NXHpxdnn1F4pYgSw=",
|
||||
"lastModified": 1736373539,
|
||||
"narHash": "sha256-dinzAqCjenWDxuy+MqUQq0I4zUSfaCvN9rzuCmgMZJY=",
|
||||
"owner": "nix-community",
|
||||
"repo": "home-manager",
|
||||
"rev": "80b0fdf483c5d1cb75aaad909bd390d48673857f",
|
||||
"rev": "bd65bc3cde04c16755955630b344bc9e35272c56",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -44,11 +44,11 @@
|
|||
},
|
||||
"nixpkgs": {
|
||||
"locked": {
|
||||
"lastModified": 1734323986,
|
||||
"narHash": "sha256-m/lh6hYMIWDYHCAsn81CDAiXoT3gmxXI9J987W5tZrE=",
|
||||
"lastModified": 1739055578,
|
||||
"narHash": "sha256-2MhC2Bgd06uI1A0vkdNUyDYsMD0SLNGKtD8600mZ69A=",
|
||||
"owner": "NixOS",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "394571358ce82dff7411395829aa6a3aad45b907",
|
||||
"rev": "a45fa362d887f4d4a7157d95c28ca9ce2899b70e",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -60,11 +60,11 @@
|
|||
},
|
||||
"nixpkgs_2": {
|
||||
"locked": {
|
||||
"lastModified": 1734424634,
|
||||
"narHash": "sha256-cHar1vqHOOyC7f1+tVycPoWTfKIaqkoe1Q6TnKzuti4=",
|
||||
"lastModified": 1739020877,
|
||||
"narHash": "sha256-mIvECo/NNdJJ/bXjNqIh8yeoSjVLAuDuTUzAo7dzs8Y=",
|
||||
"owner": "nixos",
|
||||
"repo": "nixpkgs",
|
||||
"rev": "d3c42f187194c26d9f0309a8ecc469d6c878ce33",
|
||||
"rev": "a79cfe0ebd24952b580b1cf08cd906354996d547",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
@ -81,11 +81,11 @@
|
|||
"treefmt-nix": "treefmt-nix"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1734616194,
|
||||
"narHash": "sha256-J90ItNNG+V2tneyHGHDCTb/WBxrpobxl+SsiQGVxOAI=",
|
||||
"lastModified": 1739229047,
|
||||
"narHash": "sha256-sSTgA86wdk8d544c2+gzrfvVPHQF4mbsomvLOW2thn0=",
|
||||
"owner": "nix-community",
|
||||
"repo": "nur",
|
||||
"rev": "89621e43228d2941138a4d54a24924cd70d12bfe",
|
||||
"rev": "8348d89f30598a73fee7efb4b5d34c3de201e71b",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@
|
|||
./system/desktop.nix
|
||||
./system/hardware/nova.nix
|
||||
./system/gnome.nix
|
||||
./system/hyprland.nix
|
||||
./system/steam.nix
|
||||
./system/btrbk.nix
|
||||
./system/yubikey.nix
|
||||
|
|
|
|||
|
|
@ -48,5 +48,7 @@
|
|||
];
|
||||
|
||||
programs.obs-studio.enable = true;
|
||||
programs.kitty.enable = true;
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,13 +31,16 @@
|
|||
};
|
||||
"org/gnome/settings-daemon/plugins/media-keys" = {
|
||||
screenreader = [];
|
||||
magnifier = [];
|
||||
magnifier = ["<Super>z"];
|
||||
magnifier-zoom-in = [];
|
||||
magnifier-zoom-out = [];
|
||||
help = [];
|
||||
logout = ["<Super>q"];
|
||||
};
|
||||
"org/gnome/shell/keybindings" = {
|
||||
toggle-quick-settings = ["<Super>comma"];
|
||||
toggle-message-tray = ["<Super>n"];
|
||||
toggle-overview = ["<Super>a"];
|
||||
};
|
||||
"org/gnome/desktop/wm/keybindings" = {
|
||||
move-to-monitor-down = [];
|
||||
|
|
@ -47,6 +50,7 @@
|
|||
move-to-workspace-last = [];
|
||||
switch-applications = ["<Super>Tab"];
|
||||
switch-applications-backward = ["<Shift><Super>Tab"];
|
||||
switch-monitor = [];
|
||||
cycle-panels = [];
|
||||
cycle-panels-backward = [];
|
||||
cycle-group = [];
|
||||
|
|
@ -84,6 +88,8 @@
|
|||
switch-to-application-2 = [];
|
||||
switch-to-application-3 = [];
|
||||
switch-to-application-4 = [];
|
||||
toggle-fullscreen = ["<Shift><Super>f"];
|
||||
begin-resize = ["<Super>r"];
|
||||
};
|
||||
};
|
||||
xdg.configFile."run-or-raise/shortcuts.conf".source = ./run-or-raise.conf;
|
||||
|
|
|
|||
|
|
@ -14,12 +14,10 @@
|
|||
#
|
||||
# This line cycles any open gnome-terminal (matched by wm_class = Gnome-terminal on Ubuntu 17.10) OR if not found, launches new one.
|
||||
# If you're using Arch, you may want to match by wm_class = gnome-terminal-server , just check yourself by Alt+F2/lg/Windows
|
||||
<Super>t,gnome-terminal,gnome-terminal-server,
|
||||
<Super>n,nautilus,,
|
||||
<Super>f,firefox,,
|
||||
<Super>b,firefox,,
|
||||
<Super>f,nautilus,,
|
||||
<Super>return,foot,,
|
||||
<Super>x,keepassxc,,,
|
||||
<Super>q,qutebrowser,,
|
||||
<Super>p,keepassxc,,,
|
||||
|
||||
# You may use regular expression in title or wm_class.
|
||||
# Just put the regular expression between slashes.
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@
|
|||
passwordCommand = "secret-tool lookup server uni-frankfurt.de account tstraube";
|
||||
signature = {
|
||||
text = ''
|
||||
Dr. Till Straube (he, him, his)
|
||||
Dr. Till Straube (he/him)
|
||||
Dept. of Human Geography
|
||||
Goethe University Frankfurt
|
||||
'';
|
||||
|
|
@ -88,7 +88,7 @@
|
|||
notmuch.enable = true;
|
||||
userName = "till";
|
||||
signature.text = ''
|
||||
Till Straube (he, him, his)
|
||||
Till Straube (he/him)
|
||||
PGP: https://keys.openpgp.org/search?q=till@ktiu.net
|
||||
'';
|
||||
signature.showSignature = "append";
|
||||
|
|
|
|||
|
|
@ -12,6 +12,8 @@
|
|||
|
||||
programs.fish.enable = true;
|
||||
|
||||
users.mutableUsers = true;
|
||||
|
||||
users.users.till = {
|
||||
isNormalUser = true;
|
||||
description = "Till";
|
||||
|
|
|
|||
|
|
@ -2,7 +2,11 @@
|
|||
|
||||
{
|
||||
services.xserver.enable = true;
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
services.xserver.displayManager = {
|
||||
gdm.enable = true;
|
||||
autoLogin.user = "till";
|
||||
};
|
||||
|
||||
services.xserver.desktopManager.gnome.enable = true;
|
||||
services.gnome.gnome-browser-connector.enable = true;
|
||||
environment.gnome.excludePackages = (with pkgs; [
|
||||
|
|
|
|||
17
system/hyprland.nix
Normal file
17
system/hyprland.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.uwsm.enable = true;
|
||||
|
||||
programs.hyprland = {
|
||||
enable = true;
|
||||
withUWSM = true;
|
||||
};
|
||||
|
||||
programs.waybar.enable = true;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
swaynotificationcenter
|
||||
tofi
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue