summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
committerSkullheadx <admonty1@protonmail.com>2026-04-25 21:34:06 -0400
commitf351ef00f77e5ea4d082a7eff86d7845dad7d9e0 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /flake.nix
parentbluetooth (diff)
downloadnixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.gz
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.tar.bz2
nixos-f351ef00f77e5ea4d082a7eff86d7845dad7d9e0.zip
remove all
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix64
1 files changed, 0 insertions, 64 deletions
diff --git a/flake.nix b/flake.nix
deleted file mode 100644
index fe79f36..0000000
--- a/flake.nix
+++ /dev/null
@@ -1,64 +0,0 @@
-{
- description = "Skullheadx's Flake";
-
- inputs = {
- nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
- home-manager = {
- url = "github:nix-community/home-manager";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- stylix = {
- url = "github:nix-community/stylix";
- inputs.nixpkgs.follows = "nixpkgs";
- };
- nur = {
- url = "github:nix-community/NUR";
- #inputs.nixpkgs.follows = "nixpkgs";
- };
- };
-
- outputs =
- {
- self,
- nixpkgs,
- home-manager,
- stylix,
- nur,
- ...
- }@inputs:
- let
- lib = nixpkgs.lib;
- system = "x86_64-linux";
- pkgs = import nixpkgs {
- inherit system;
- config.allowUnfree = true;
- overlays = [ nur.overlays.default ];
- };
- in
- {
- nixosConfigurations = {
- home = lib.nixosSystem {
- inherit system;
- modules = [
- ./configuration.nix
- ];
- specialArgs = {
- inherit inputs;
- };
- };
- };
- homeConfigurations = {
- andrew = home-manager.lib.homeManagerConfiguration {
- inherit pkgs;
- modules = [
- stylix.homeModules.stylix
- #nur.modules.nixos.default
- ./dotfiles.nix
- ./home.nix
- { dotfiles.mutable = true; }
- ];
- extraSpecialArgs = { inherit inputs; };
- };
- };
- };
-}