dotfiles/flake.nix

255 lines
7.8 KiB
Nix
Raw Normal View History

2025-09-09 18:03:42 +02:00
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
c3d2-user-module.url = "git+https://gitea.c3d2.de/C3D2/nix-user-module.git";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
niri.url = "github:sodiboo/niri-flake";
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
treefmt-nix = {
url = "github:numtide/treefmt-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
determinate.url = "https://flakehub.com/f/DeterminateSystems/determinate/*";
nix-index-db = {
url = "github:Mic92/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs";
};
quickshell = {
url = "git+https://git.outfoxxed.me/quickshell/quickshell";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-09-09 18:21:35 +02:00
comin = {
url = "github:nlewo/comin";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-09-09 18:38:16 +02:00
stylix = {
url = "github:nix-community/stylix";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-09-09 19:50:59 +02:00
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
2025-09-09 23:43:59 +02:00
musnix.url = "github:musnix/musnix";
nix-mineral = {
url = "github:cynicsketch/nix-mineral";
flake = false;
};
2025-09-09 18:03:42 +02:00
};
outputs =
2025-09-09 22:57:24 +02:00
inputs@{
self,
nixpkgs,
c3d2-user-module,
home-manager,
niri,
nixos-hardware,
treefmt-nix,
determinate,
nix-index-db,
quickshell,
stylix,
comin,
firefox-addons,
2025-09-09 23:43:59 +02:00
musnix,
nix-mineral,
2025-09-09 18:03:42 +02:00
}:
let
system = "x86_64-linux";
2025-09-09 23:43:59 +02:00
pkgs = import nixpkgs { inherit system; };
2025-09-09 21:20:12 +02:00
lib = pkgs.lib;
2025-09-09 18:03:42 +02:00
# Configure treefmt
treefmtEval = treefmt-nix.lib.evalModule pkgs {
projectRootFile = "flake.nix";
programs = {
nixpkgs-fmt.enable = true;
prettier = {
enable = true;
includes = [
"*.json"
"*.yaml"
"*.yml"
];
};
taplo.enable = true;
};
settings = {
global.excludes = [
"*.lock"
"result"
".git/"
"*.md"
"*.sh"
"*.py"
"*.js"
"*.ts"
];
};
};
in
{
2025-09-09 23:43:59 +02:00
packages.${system} = {
hello-kitty-cursors = pkgs.stdenv.mkDerivation {
pname = "hello-kitty-cursors";
version = "1.0.0";
src = pkgs.fetchzip {
url = "https://www.rw-designer.com/cursor-downloadset/hello-kitty.zip";
sha256 = "sha256-p4US/gftDL0ne4l0dHUIKKZy2oibkOqdJ3fMisySnNM="; # Replace with the actual hash of the zip file
stripRoot = false;
};
2025-09-09 21:20:12 +02:00
2025-09-09 23:43:59 +02:00
installPhase = ''
mkdir -p $out/share/icons/HelloKitty
for file in ${self}/cursors/*; do
if [ -e "$file" ]; then
cp "$file" "$out/share/icons/HelloKitty/"
else
echo "Warning: File $file does not exist."
fi
done
# Adjust the path to index.theme if necessary
if [ -e "${self}/index.theme" ]; then
cp "${self}/index.theme" "$out/share/icons/HelloKitty/"
else
echo "Warning: index.theme does not exist."
fi
'';
meta = with nixpkgs.lib; {
description = "Hello Kitty Cursor theme";
homepage = "https://www.rw-designer.com/cursor-downloadset/hello-kitty.zip";
license = licenses.gpl2Only;
maintainers = with maintainers; [ your-maintainer-name ]; # Replace with your name
};
};
2025-09-09 21:20:12 +02:00
2025-09-09 23:43:59 +02:00
wallpapers = pkgs.stdenv.mkDerivation {
name = "wallpapers";
src = ./assets;
2025-09-09 21:20:12 +02:00
2025-09-09 23:43:59 +02:00
buildInputs = with pkgs; [ ffmpeg ];
2025-09-09 21:20:12 +02:00
2025-09-09 23:43:59 +02:00
buildPhase = ''
# Create output directory
mkdir -p $out/share/wallpapers
2025-09-09 21:20:12 +02:00
2025-09-09 23:43:59 +02:00
# Copy static wallpaper
cp "wp6553608.jpg" "$out/share/wallpapers/static-wallpaper.jpg"
2025-09-09 19:50:59 +02:00
2025-09-09 23:43:59 +02:00
# Copy original animated wallpaper
cp "Anime Live Wallpaper - Anime Cat Girl Snow - HD - no copyright [SiMc3l0ido0].mp4" \
"$out/share/wallpapers/anime-cat-girl-snow.mp4"
2025-09-09 21:20:12 +02:00
2025-09-09 23:43:59 +02:00
# Create optimized version
${pkgs.ffmpeg}/bin/ffmpeg -i "Anime Live Wallpaper - Anime Cat Girl Snow - HD - no copyright [SiMc3l0ido0].mp4" \
-vf "scale=1920:1080:force_original_aspect_ratio=increase,crop=1920:1080" \
-r 30 -c:v libx264 -crf 28 -preset medium \
-t 30 -an "$out/share/wallpapers/anime-cat-girl-snow-optimized.mp4"
'';
installPhase = ''
# Files are already in the right place from buildPhase
echo "Wallpapers installed to $out/share/wallpapers"
'';
meta = with lib; {
description = "Personal wallpaper collection";
platforms = platforms.linux;
};
2025-09-09 21:20:12 +02:00
};
2025-09-09 19:50:59 +02:00
};
2025-09-09 23:43:59 +02:00
2025-09-09 18:03:42 +02:00
nixosConfigurations.p50 = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
system = "x86_64-linux";
modules = [
2025-09-09 23:43:59 +02:00
"${nix-mineral}/nix-mineral.nix"
2025-09-09 18:03:42 +02:00
niri.nixosModules.niri
nixos-hardware.nixosModules.lenovo-thinkpad-p50
./configuration.nix
determinate.nixosModules.default
2025-09-09 23:43:59 +02:00
musnix.nixosModules.musnix
2025-09-09 18:03:42 +02:00
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
2025-09-09 19:50:59 +02:00
home-manager.backupFileExtension = "backup";
2025-09-09 22:06:57 +02:00
home-manager.extraSpecialArgs = { inherit inputs; };
2025-09-09 18:03:42 +02:00
home-manager.users.lucy =
2025-09-09 22:57:24 +02:00
{
config,
pkgs,
lib,
inputs,
...
2025-09-09 18:03:42 +02:00
}:
{
imports = [
./modules/home.nix
2025-09-09 23:43:59 +02:00
./modules/bottom.nix
./modules/htop.nix
2025-09-09 18:03:42 +02:00
];
2025-09-09 22:06:57 +02:00
home.packages = with pkgs; [
inputs.self.packages.${pkgs.system}.wallpapers
];
home.file = {
".local/share/wallpapers/anime-cat-girl-snow.mp4".source = "${
inputs.self.packages.${pkgs.system}.wallpapers
}/share/wallpapers/anime-cat-girl-snow.mp4";
".local/share/wallpapers/static-wallpaper.jpg".source = "${
inputs.self.packages.${pkgs.system}.wallpapers
}/share/wallpapers/static-wallpaper.jpg";
".local/share/wallpapers/anime-cat-girl-snow-optimized.mp4".source = "${
inputs.self.packages.${pkgs.system}.wallpapers
}/share/wallpapers/anime-cat-girl-snow-optimized.mp4";
};
2025-09-09 18:03:42 +02:00
};
}
c3d2-user-module.nixosModule
./modules/nix.nix
./modules/fonts.nix
2025-09-09 18:21:35 +02:00
comin.nixosModules.comin
./modules/comin.nix
2025-09-09 18:38:16 +02:00
stylix.nixosModules.stylix
./modules/stylix.nix
2025-09-09 22:57:24 +02:00
./modules/firefox-nixos.nix
2025-09-09 18:03:42 +02:00
];
};
# Add treefmt formatter
formatter.${system} = treefmtEval.config.build.wrapper;
# Optional: Add a dev shell with treefmt
devShells.${system}.default = pkgs.mkShell {
buildInputs = with pkgs; [
git
treefmtEval.config.build.wrapper
];
shellHook = ''
echo "Development shell loaded!"
echo "Run 'nix fmt' to format all files"
echo "Run 'treefmt' to format with treefmt directly"
'';
};
# Optional: Add formatting check
checks.${system} = {
formatting = treefmtEval.config.build.check self;
};
};
}