This commit is contained in:
joy 2024-11-24 19:21:08 +01:00
parent d07149cbbe
commit ea854d5559
4 changed files with 6 additions and 68 deletions

View file

@ -97,11 +97,11 @@
}, },
"locked": { "locked": {
"dir": "pkgs/firefox-addons", "dir": "pkgs/firefox-addons",
"lastModified": 1732453878, "lastModified": 1732467630,
"narHash": "sha256-Sx5srP6yytPH1Aw7SfARM7jblIBLoEl4U8hZUN6M4Fk=", "narHash": "sha256-tm4ZWvjaL1xZmfdi6f1KuEf82XuFspFrX9p6pj+qbSE=",
"owner": "rycee", "owner": "rycee",
"repo": "nur-expressions", "repo": "nur-expressions",
"rev": "2086e1e4b9ada90a0ac3121c97a3e20f3b92bd37", "rev": "1f325824ab3a25d9099bc610b9e3825867fe4c1a",
"type": "gitlab" "type": "gitlab"
}, },
"original": { "original": {
@ -203,11 +203,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1732453510, "lastModified": 1732471618,
"narHash": "sha256-mAOaLu++YRwOxCJ135Bhgf78WYhIKWHL2aGWCAoXoBg=", "narHash": "sha256-CQj7ZF7fdf8Be5s6m1PAhSjgrGkYIr+xcKZmSvSD4CI=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "bd58a1132e9b7f121f65313bc662ad6c8a05f878", "rev": "98bf8de65dc1ed12c6443b18f6f24d36e9c438d6",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -15,7 +15,6 @@
history.path = ".config/zsh/history"; history.path = ".config/zsh/history";
shellAliases = { shellAliases = {
cn = "cd ~/home/${username}/nix";
ls = "${pkgs.eza}/bin/eza --icons -a --group-directories-first"; ls = "${pkgs.eza}/bin/eza --icons -a --group-directories-first";
v = "${pkgs.helix}/bin/hx"; v = "${pkgs.helix}/bin/hx";
cat = "${pkgs.bat}/bin/bat"; cat = "${pkgs.bat}/bin/bat";

View file

@ -9,7 +9,6 @@
./gnome ./gnome
./hyprland ./hyprland
./polkit ./polkit
# ./stylix
./syncthing ./syncthing
]; ];
home-manager = { home-manager = {

View file

@ -1,60 +0,0 @@
{
pkgs,
inputs,
username,
...
}: let
backgroundUrl = "https://wallpapers.joygnu.org/wallpapers/anime/ghibli-japanese-walled-garden.png";
backgroundSha256 = "sha256-10Lv25V0RG0mnw/O90DeVchCNWJbdktUADtuI+enEwM=";
in {
imports = [inputs.stylix.homeManagerModules.stylix];
stylix = {
enable = true;
autoEnable = false;
# polarity = "dark";
base16Scheme = {
base00 = "282828"; # ----
base01 = "3c3836"; # ---
base02 = "504945"; # --
base03 = "665c54"; # -
base04 = "bdae93"; # +
base05 = "d5c4a1"; # ++
base06 = "ebdbb2"; # +++
base07 = "fbf1c7"; # ++++
base08 = "cc241d"; # red
base09 = "fe0819"; # orange
base0A = "d79921"; # yellow
base0B = "98971a"; # green
base0C = "689d6a"; # aqua/cyan
base0D = "458588"; # blue
base0E = "b16286"; # purple
base0F = "a89984"; # brown
};
image = pkgs.fetchurl {
url = backgroundUrl;
sha256 = backgroundSha256;
};
# cursor = {
# name = "Bibata-Modern-Ice";
# package = pkgs.bibata-cursors;
# size = 24;
# };
# fonts = {
# monospace = {
# package = pkgs.nerdfonts.override {fonts = ["RobotoMono"];};
# name = "RobotoMono Nerd Font";
# };
# sizes = {
# applications = 12;
# terminal = 13;
# desktop = 12;
# popups = 12;
# };
# };
};
}