screenshots
This commit is contained in:
parent
196276521a
commit
89285ac298
4 changed files with 24 additions and 14 deletions
12
flake.lock
generated
12
flake.lock
generated
|
|
@ -7,11 +7,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1713818326,
|
"lastModified": 1714203603,
|
||||||
"narHash": "sha256-aw3xbVPJauLk/bbrlakIYxKpeuMWzA2feGrkIpIuXd8=",
|
"narHash": "sha256-eT7DENhYy7EPLOqHI9zkIMD9RvMCXcqh6gGqOK5BWYQ=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "67de98ae6eed5ad6f91b1142356d71a87ba97f21",
|
"rev": "c1609d584a6b5e9e6a02010f51bd368cb4782f8e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -22,11 +22,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1713714899,
|
"lastModified": 1714076141,
|
||||||
"narHash": "sha256-+z/XjO3QJs5rLE5UOf015gdVauVRQd2vZtsFkaXBq2Y=",
|
"narHash": "sha256-Drmja/f5MRHZCskS6mvzFqxEaZMeciScCTFxWVLqWEY=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "6143fc5eeb9c4f00163267708e26191d1e918932",
|
"rev": "7bb2ccd8cdc44c91edba16c48d2c8f331fb3d856",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
10
home.nix
10
home.nix
|
|
@ -49,6 +49,7 @@ let username = "clemens"; in
|
||||||
firefox
|
firefox
|
||||||
tex
|
tex
|
||||||
jetbrains.idea-ultimate
|
jetbrains.idea-ultimate
|
||||||
|
jetbrains.clion
|
||||||
thunderbird
|
thunderbird
|
||||||
signal-desktop
|
signal-desktop
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
|
|
@ -61,7 +62,6 @@ let username = "clemens"; in
|
||||||
xournalpp
|
xournalpp
|
||||||
pavucontrol
|
pavucontrol
|
||||||
keepassxc
|
keepassxc
|
||||||
flameshot
|
|
||||||
gnome.simple-scan
|
gnome.simple-scan
|
||||||
lxqt.lxqt-policykit
|
lxqt.lxqt-policykit
|
||||||
cifs-utils
|
cifs-utils
|
||||||
|
|
@ -70,7 +70,13 @@ let username = "clemens"; in
|
||||||
direnv
|
direnv
|
||||||
font-awesome
|
font-awesome
|
||||||
networkmanagerapplet
|
networkmanagerapplet
|
||||||
] ++ (if x11mode then [ arandr ] else [ wdisplays ]);
|
] ++ (if x11mode then [
|
||||||
|
arandr
|
||||||
|
flameshot
|
||||||
|
] else [
|
||||||
|
wdisplays
|
||||||
|
sway-contrib.grimshot
|
||||||
|
]);
|
||||||
|
|
||||||
fonts.fontconfig.enable = true;
|
fonts.fontconfig.enable = true;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -94,6 +94,9 @@
|
||||||
"exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'";
|
"exec swaynag -t warning -m 'You pressed the exit shortcut. Do you really want to exit sway? This will end your Wayland session.' -b 'Yes, exit sway' 'swaymsg exit'";
|
||||||
|
|
||||||
"${mod}+r" = "mode resize";
|
"${mod}+r" = "mode resize";
|
||||||
|
|
||||||
|
"${mod}+Print" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot copy anything";
|
||||||
|
"${mod}+Shift+Print" = "exec ${pkgs.sway-contrib.grimshot}/bin/grimshot save anything";
|
||||||
};
|
};
|
||||||
startup = [
|
startup = [
|
||||||
{
|
{
|
||||||
|
|
@ -116,10 +119,10 @@
|
||||||
command = "blueman-applet";
|
command = "blueman-applet";
|
||||||
always = true;
|
always = true;
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
command = "nm-applet";
|
command = "nm-applet";
|
||||||
always = true;
|
always = true;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,8 @@
|
||||||
critical-threshold = 70;
|
critical-threshold = 70;
|
||||||
format = "{temperatureC}°C";
|
format = "{temperatureC}°C";
|
||||||
interval = 2;
|
interval = 2;
|
||||||
hwmon-path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input";
|
hwmon-path-abs = "/sys/devices/platform/coretemp.0/hwmon";
|
||||||
|
input-filename = "temp1_input";
|
||||||
};
|
};
|
||||||
|
|
||||||
"network#eth" = {
|
"network#eth" = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue