fixed wallpapers and added nix config

This commit is contained in:
voidarclabs
2025-11-03 12:56:15 +00:00
parent 2a4ab2679e
commit 6bc29c58bd
5 changed files with 56 additions and 59 deletions

16
.nixos/flake.nix Normal file
View File

@@ -0,0 +1,16 @@
{
description = "My NixOS system configuration";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
outputs = { self, nixpkgs, ... }@inputs:
{
nixosConfigurations.mobile02 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
};
};
}