Compare commits

...

2 Commits

Author SHA1 Message Date
Víðir Valberg Guðmundsson c4137077c3 upd. 2024-04-04 10:52:18 +02:00
Víðir Valberg Guðmundsson 84cae94cee upd. 2024-03-07 09:56:48 +01:00
4 changed files with 35 additions and 8 deletions

View File

@ -98,6 +98,8 @@
programs.fish.enable = true;
programs.hyprland.enable = true;
# Define a user account. Don't forget to set a password with passwd.
users.users.valberg = {
isNormalUser = true;
@ -131,7 +133,7 @@
rustc
cargo
gcc
rust-jemalloc-sys-unprefixed
rust-jemalloc-sys
];
# Some programs need SUID wrappers, can be configured further or are

View File

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1709731606,
"narHash": "sha256-VS17VGD5s4ijFh5mEzpWWgTPujaCvHxuG5L5FyMG3L0=",
"lastModified": 1712212014,
"narHash": "sha256-s+lbaf3nLRn1++/X2eXwY9mYCA/m9l8AvyG8beeOaXE=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "8d9fde0fba21425729905f795fe72c2840a20442",
"rev": "7e91f2a0ba4b62b88591279d54f741a13e36245b",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1709479366,
"narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=",
"lastModified": 1712122226,
"narHash": "sha256-pmgwKs8Thu1WETMqCrWUm0CkN1nmCKX3b51+EXsAZyY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "b8697e57f10292a6165a20f03d2f42920dfaf973",
"rev": "08b9151ed40350725eb40b1fe96b0b86304a654b",
"type": "github"
},
"original": {

View File

@ -1,3 +1,24 @@
{pkgs, ...}:
{
wayland.windowManager.hyprland.enable = true;
wayland.windowManager.hyprland = {
enable = true;
systemd.enable = true;
package = pkgs.hyprland;
settings = {
"$terminal" = "foot";
"$mod" = "SUPER";
monitor=",preferred,auto,1.5";
input = {
touchpad = {
natural_scroll = true;
};
};
bind = [
"$mod, Q, exec, $terminal"
"$mod, F, exec, firefox"
];
};
};
}

View File

@ -53,6 +53,7 @@
# Backup
deja-dup
synology-drive-client
# Note taking
obsidian
@ -96,6 +97,9 @@
clock24 = true;
keyMode = "vi";
prefix = "C-a";
customPaneNavigationAndResize = true;
extraConfig = ''
'';
};
programs.fzf = {