meow
This commit is contained in:
parent
44d708329a
commit
7dd32c7a17
9 changed files with 168 additions and 56 deletions
4
modules/bottom.nix
Normal file
4
modules/bottom.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.bottom.enable = true;
|
||||
}
|
||||
|
|
@ -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
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,7 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
{ config
|
||||
, pkgs
|
||||
, inputs
|
||||
, ...
|
||||
}:
|
||||
{
|
||||
imports = [
|
||||
|
|
|
|||
4
modules/htop.nix
Normal file
4
modules/htop.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.htop.enable = true;
|
||||
}
|
||||
4
modules/music.nix
Normal file
4
modules/music.nix
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{ ... }:
|
||||
{
|
||||
musnix.enable = true;
|
||||
}
|
||||
|
|
@ -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";
|
||||
|
|
|
|||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue