From e7056267b80811e3fc975ae9f606c4828cf22371 Mon Sep 17 00:00:00 2001 From: tulg Date: Sun, 19 Oct 2025 22:04:18 +0300 Subject: [PATCH] delete sm --- flake.fucked | 62 ------------------------------ flake.morefucked | 98 ------------------------------------------------ 2 files changed, 160 deletions(-) delete mode 100644 flake.fucked delete mode 100644 flake.morefucked diff --git a/flake.fucked b/flake.fucked deleted file mode 100644 index 3d825a5..0000000 --- a/flake.fucked +++ /dev/null @@ -1,62 +0,0 @@ -{ - description = "Tulga's multi-device NixOS configuration (no global modules)"; - - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - - home-manager = { - url = "github:nix-community/home-manager"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - nix-colors.url = "github:misterio77/nix-colors"; - - zen-browser = { - url = "github:0xc000022070/zen-browser-flake"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - disko = { - url = "github:nix-community/disko"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - }; - - outputs = { self, nixpkgs, home-manager, nix-colors, disko, ... } @ inputs: - let - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - config.allowUnfree = true; - }; - in { - - # - nixosConfigurations.virgil = nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - ./hosts/virgil/configuration.nix - home-manager.nixosModules.home-manager - ./modules/home.nix - ]; - specialArgs = { inherit inputs pkgs self ; }; - }; - - # - nixosConfigurations.archangel = nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - ./hosts/archangel/configuration.nix - ]; - specialArgs = { inherit ; }; - }; - - # placeholder - #nixosConfigurations.server = nixpkgs.lib.nixosSystem { - # inherit system; - # modules = [ - # ./hosts/server/configuration.nix - # ]; - # }; - }; -} diff --git a/flake.morefucked b/flake.morefucked deleted file mode 100644 index 8533716..0000000 --- a/flake.morefucked +++ /dev/null @@ -1,98 +0,0 @@ -{ - description = "NixOS configuration"; - - inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; - - spicetify-nix.url = "github:Gerg-L/spicetify-nix"; - - home-manager = { - url = "github:nix-community/home-manager"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - nix-colors.url = "github:misterio77/nix-colors"; - - zen-browser = { - url = "github:0xc000022070/zen-browser-flake"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - disko = { - url = "github:nix-community/disko"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - }; - - outputs = { self, nixpkgs, home-manager, nix-colors, disko, ... } @ inputs: - let - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - config.allowUnfree = true; - }; - in - { - nixosConfigurations = { - - # ------------------------ - # Virgil machine - # ------------------------ - virgil = nixpkgs.lib.nixosSystem { - inherit system; - - modules = [ - ./hosts/virgil/configuration.nix - home-manager.nixosModules.home-manager - inputs.disko.nixosModules.disko - { - home-manager.users.tulg.imports = [ ./modules/home.nix ]; - home-manager.extraSpecialArgs = { - spicetify-nix = inputs.spicetify-nix; - zen-browser = inputs.zen-browser; - }; - } - ]; - }; - - # ------------------------ - # archangel - # ------------------------ - archangel = nixpkgs.lib.nixosSystem { - inherit system; - - modules = [ - ./hosts/archangel/configuration.nix - home-manager.nixosModules.home-manager - { - home-manager.users.tulg.imports = [ ./modules/home.nix ]; - home-manager.extraSpecialArgs = { - spicetify-nix = inputs.spicetify-nix; - zen-browser = inputs.zen-browser; - }; - } - ]; - }; - - # ------------------------ - # Placeholder machine 2 - # ------------------------ - machine2 = nixpkgs.lib.nixosSystem { - inherit system; - - modules = [ - ./hosts/machine2/configuration.nix - home-manager.nixosModules.home-manager - { - home-manager.users.tulg.imports = [ ./modules/home.nix ]; - home-manager.extraSpecialArgs = { - spicetify-nix = inputs.spicetify-nix; - zen-browser = inputs.zen-browser; - }; - } - ]; - }; - - }; - }; -}