☝ Cursors

Added Hyprcursor with rose-pine-hyprcursor theme.

Moved username into a constant in home.nix.

Installed Discord
This commit is contained in:
Martin Berg Alstad 2024-12-29 10:56:58 +01:00
parent f60462a770
commit 6d6331f4b4
Signed by: martials
GPG Key ID: A3824877B269F2E2
48 changed files with 24 additions and 5 deletions

View File

@ -76,7 +76,7 @@
xdg-utils
xdg-desktop-portal-gtk
xdg-desktop-portal-hyprland
hyprpolkitagent
hyprpolkitagent # Auth deamon providing modals for password auth
kdePackages.dolphin
kdePackages.qtwayland
kdePackages.qtsvg
@ -89,6 +89,7 @@
fastfetch
freetube
nextcloud-client
discord
];
nix.settings.experimental-features = [

2
fmt
View File

@ -1,5 +1,5 @@
#!/usr/bin/env sh
# Format all .nix files using the new default nix formatter
# TODO doesn't work when run using ./fmt
nix fmt ./**.nix

View File

@ -3,20 +3,23 @@
inputs,
...
}:
let
username = "martin";
in
{
imports = [
inputs.nixvim.homeManagerModules.nixvim
./nixvim
./rofi
./wlogout
../hyprland/hyprcursor
];
# Home Manager needs a bit of information about you and the
# paths it should manage.
home = {
username = "martin";
homeDirectory = "/home/martin";
username = username;
homeDirectory = "/home/${username}";
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.

View File

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
hyprcursor
];
home.file = {
".local/share/icons/rose-pine-hyprcursor" = {
source = ./icons;
recursive = true;
};
};
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -2,4 +2,5 @@
# Rebuild and switch the environment if successful
git add .
./fmt
sudo nixos-rebuild switch --flake .#