This commit is contained in:
Víðir Valberg Guðmundsson 2024-04-04 10:52:18 +02:00
parent 84cae94cee
commit c4137077c3
4 changed files with 34 additions and 7 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;

View File

@ -7,11 +7,11 @@
]
},
"locked": {
"lastModified": 1709764752,
"narHash": "sha256-+lM4J4JoJeiN8V+3WSWndPHj1pJ9Jc1UMikGbXLqCTk=",
"lastModified": 1712212014,
"narHash": "sha256-s+lbaf3nLRn1++/X2eXwY9mYCA/m9l8AvyG8beeOaXE=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "cf111d1a849ddfc38e9155be029519b0e2329615",
"rev": "7e91f2a0ba4b62b88591279d54f741a13e36245b",
"type": "github"
},
"original": {
@ -22,11 +22,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1709703039,
"narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=",
"lastModified": 1712122226,
"narHash": "sha256-pmgwKs8Thu1WETMqCrWUm0CkN1nmCKX3b51+EXsAZyY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d",
"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 = {