This commit is contained in:
Lucy von Overheidt 2025-09-09 23:43:59 +02:00
parent 44d708329a
commit 7dd32c7a17
9 changed files with 168 additions and 56 deletions

4
modules/bottom.nix Normal file
View file

@ -0,0 +1,4 @@
{ ... }:
{
programs.bottom.enable = true;
}

View file

@ -11,12 +11,8 @@ let
packageNames = map (font: font.package) fonts;
in
{
fonts.packages =
with pkgs;
[
iosevka
comic-mono
nerdfonts
]
++ builtins.filter lib.attrsets.isDerivation (builtins.attrValues pkgs.nerd-fonts);
fonts.packages = with pkgs; [
iosevka
comic-mono
];
}

View file

@ -1,8 +1,7 @@
{
config,
pkgs,
inputs,
...
{ config
, pkgs
, inputs
, ...
}:
{
imports = [

4
modules/htop.nix Normal file
View file

@ -0,0 +1,4 @@
{ ... }:
{
programs.htop.enable = true;
}

4
modules/music.nix Normal file
View file

@ -0,0 +1,4 @@
{ ... }:
{
musnix.enable = true;
}

View file

@ -1,8 +1,9 @@
{ config
, lib
, pkgs
, inputs
, ...
{
config,
lib,
pkgs,
inputs,
...
}:
let
makeCommand = command: {
@ -11,10 +12,20 @@ let
qs = "${pkgs.quickshell}/bin/qs";
wl-paste = "${pkgs.wl-clipboard}/bin/wl-paste";
wallpapers = inputs.self.packages.${pkgs.system}.wallpapers;
helloKittyCursor = pkgs.fetchzip {
url = "https://www.rw-designer.com/cursor-downloadset/hello-kitty.zip";
hash = "";
};
in
{
programs.niri.settings = {
cursor = {
theme = "Hello-Kitty"; # Set the cursor theme
size = 48; # Set the cursor size in logical pixels
hide-after-inactive-ms = 1000; # Hide cursor after 1 second of inactivity
hide-when-typing = true; # Hide cursor when typing
};
environment = {
CLUTTER_BACKEND = "wayland";
DISPLAY = ":0";

View file

@ -97,8 +97,6 @@ in
fg = "job unfreeze";
nano = hx;
vi = hx;
nvim = hx;
vim = hx;
devenv-init = "${nix} flake init --template github:cachix/devenv";
devenv-enter = "${nix} develop --impure";
rust-init = "${nix} flake init --template templates#rust";