This commit is contained in:
Lucy von Overheidt 2025-09-09 19:50:59 +02:00
parent 9deeeaabce
commit 4348bef5ac
4 changed files with 37 additions and 2 deletions

View file

@ -31,6 +31,10 @@
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@ -83,6 +87,16 @@
};
in
{
packages.${system}.wallpaper = pkgs.stdenv.mkDerivation {
name = "wallpaper";
src = ./assets/wp6553608.jpg;
dontUnpack = true;
installPhase = ''
mkdir -p $out
cp $src $out/wallpaper.jpg
'';
};
nixosConfigurations.p50 = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
system = "x86_64-linux";
@ -95,6 +109,7 @@
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.backupFileExtension = "backup";
home-manager.users.lucy =
{
config,

View file

@ -31,7 +31,7 @@
*/
font = {
normal = {
family = lib.mkDefault "Iosevka";
family = lib.mkForce "Iosevka";
style = "Regular";
};
bold = {

View file

@ -14,6 +14,7 @@
./gammastep.nix
./hypridle.nix
./fuzzel.nix
./hyfetch.nix
];
# TODO please change the username & home directory to your own
@ -53,7 +54,6 @@
aerc
hyfetch
nnn # terminal file manager
prismlauncher

20
modules/hyfetch.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
programs.hyfetch = {
enable = true;
settings = {
preset = "transgender";
mode = "rgb";
auto_detect_light_dark = true;
light_dark = "dark";
lightness = 0.65;
color_align = {
mode = "horizontal";
};
backend = "neofetch";
args = null;
distro = null;
pride_month_disable = false;
};
};
}