This commit is contained in:
Till 2025-02-14 17:06:24 +01:00
parent 7dd4cb58fe
commit 133eee5975
4 changed files with 26 additions and 12 deletions

18
flake.lock generated
View file

@ -44,11 +44,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1739055578, "lastModified": 1739357830,
"narHash": "sha256-2MhC2Bgd06uI1A0vkdNUyDYsMD0SLNGKtD8600mZ69A=", "narHash": "sha256-9xim3nJJUFbVbJCz48UP4fGRStVW5nv4VdbimbKxJ3I=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a45fa362d887f4d4a7157d95c28ca9ce2899b70e", "rev": "0ff09db9d034a04acd4e8908820ba0b410d7a33a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -60,11 +60,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1739020877, "lastModified": 1739446958,
"narHash": "sha256-mIvECo/NNdJJ/bXjNqIh8yeoSjVLAuDuTUzAo7dzs8Y=", "narHash": "sha256-+/bYK3DbPxMIvSL4zArkMX0LQvS7rzBKXnDXLfKyRVc=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "a79cfe0ebd24952b580b1cf08cd906354996d547", "rev": "2ff53fe64443980e139eaa286017f53f88336dd0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -81,11 +81,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1739229047, "lastModified": 1739538383,
"narHash": "sha256-sSTgA86wdk8d544c2+gzrfvVPHQF4mbsomvLOW2thn0=", "narHash": "sha256-lc4FWHP4VWOKHBxD19/AQWmbsUCwdefMiJIdFa6KQuY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nur", "repo": "nur",
"rev": "8348d89f30598a73fee7efb4b5d34c3de201e71b", "rev": "35198d73b581574847341314fff8a99ba3d122bb",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -6,9 +6,22 @@ id3album=drei90
[50plus2] [50plus2]
url=https://50plus2.podigee.io/feed/mp3 url=https://50plus2.podigee.io/feed/mp3
id3album=50+2
[latenightlinux] [latenightlinux]
url=https://latenightlinux.com/feed/all url=https://latenightlinux.com/feed/mp3
[linuxdevtime]
url=https://latenightlinux.com/feed/extra
[linuxafterdark]
url=https://linuxafterdark.net/feed/podcast
[linuxmatters]
url=https://linuxmatters.sh/episode/index.xml
[2.5admins]
url=https://2.5admins.com/feed/podcast
[schlusskonferenz] [schlusskonferenz]
url=https://schlusskonferenz.podigee.io/feed/mp3 url=https://schlusskonferenz.podigee.io/feed/mp3

View file

@ -23,6 +23,9 @@
"org/gnome/mutter" = { "org/gnome/mutter" = {
dynamic-workspaces = true; dynamic-workspaces = true;
}; };
"org/gnome/mutter/keybindings" = {
switch-monitor = [];
};
"org/gnome/desktop/session" = { "org/gnome/desktop/session" = {
idle-delay = 0; idle-delay = 0;
}; };
@ -50,7 +53,6 @@
move-to-workspace-last = []; move-to-workspace-last = [];
switch-applications = ["<Super>Tab"]; switch-applications = ["<Super>Tab"];
switch-applications-backward = ["<Shift><Super>Tab"]; switch-applications-backward = ["<Shift><Super>Tab"];
switch-monitor = [];
cycle-panels = []; cycle-panels = [];
cycle-panels-backward = []; cycle-panels-backward = [];
cycle-group = []; cycle-group = [];

View file

@ -4,7 +4,6 @@
services.xserver.enable = true; services.xserver.enable = true;
services.xserver.displayManager = { services.xserver.displayManager = {
gdm.enable = true; gdm.enable = true;
autoLogin.user = "till";
}; };
services.xserver.desktopManager.gnome.enable = true; services.xserver.desktopManager.gnome.enable = true;