From 30c065b19434157e00ee4a872817ef7d68431652 Mon Sep 17 00:00:00 2001 From: Mr Hedgehog Date: Sun, 6 Feb 2022 20:24:35 -0500 Subject: [PATCH] feat(flake): Remove old devOS-based flake --- flake.nix.bak | 105 -------------------------------------------------- 1 file changed, 105 deletions(-) delete mode 100644 flake.nix.bak diff --git a/flake.nix.bak b/flake.nix.bak deleted file mode 100644 index ccaabc9..0000000 --- a/flake.nix.bak +++ /dev/null @@ -1,105 +0,0 @@ -{ - description = "A highly structured configuration database."; - nixConfig.extra-experimental-features = "nix-command flakes"; - nixConfig.extra-substituters = "https://nrdxp.cachix.org https://nix-community.cachix.org"; - nixConfig.extra-trusted-public-keys = "nrdxp.cachix.org-1:Fc5PSqY2Jm1TrWfm88l6cvGWwz3s93c6IOifQWnhNW4= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="; - inputs = { - nixos.url = "github:nixos/nixpkgs/release-21.11"; - latest.url = "github:nixos/nixpkgs/nixos-unstable"; - nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; - nixos-hardware.url = "github:nixos/nixos-hardware"; - agenix.url = "github:ryantm/agenix"; - agenix.inputs.nixpkgs.follows = "nixpkgs"; - alejandra.url = "github:kamadorueda/alejandra"; - alejandra.inputs.nixpkgs.follows = "nixpkgs"; - emacs.url = "github:nix-community/emacs-overlay"; - emacs.inputs.nixpkgs.follows = "nixpkgs"; - fenix.url = "github:nix-community/fenix"; - fenix.inputs.nixpkgs.follows = "nixpkgs"; - flake-utils.url = "github:numtide/flake-utils"; - flake-utils.inputs.nixpkgs.follows = "nixpkgs"; - home.url = "github:nix-community/home-manager"; - home.inputs.nixpkgs.follows = "nixpkgs"; - naersk.url = "github:nmattia/naersk"; - naersk.inputs.nixpkgs.follows = "nixpkgs"; - neovim.url = "github:nix-community/neovim-nightly-overlay"; - neovim.inputs.nixpkgs.follows = "nixpkgs"; - # nur.url = "github:nix-community/NUR"; - # nur.inputs.nixpkgs.follows = "nixpkgs"; - # poetry2nix.url = "github:nix-community/poetry2nix"; - # poetry2nix.inputs.nixpkgs.follows = "nixpkgs"; - statix.url = "github:nerdypepper/statix"; - statix.inputs.nixpkgs.follows = "nixpkgs"; - # vim-plugins.url = "github:m15a/nixpkgs-vim-extra-plugins"; - # vim-plugins.inputs.nixpkgs.follows = "nixpkgs"; - wayland.url = "github:nix-community/nixpkgs-wayland"; - wayland.inputs.nixpkgs.follows = "nixpkgs"; - }; - outputs = - inputs @ - { self - , nixos - , latest - , nixpkgs - , nixos-hardware - , agenix - , alejandra - , emacs - , fenix - , flake-utils - , home - , neovim - # , nur - # , poetry2nix - , statix - # , vim-plugins - , wayland - , ... - }: - let - system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - config.allowUnfree = true; - overlays = [ - agenix.overlay - emacs.overlay - fenix.overlay - neovim.overlay - # (import inputs.nur) - # (import inputs.vim-plugins) - ]; - }; - in - { - nixosConfigurations = { - zaphod = nixpkgs.lib.nixosSystem { - inherit system pkgs; - specialArgs = { inherit self system inputs pkgs; }; - modules = ( - [ - ./hosts/zaphod.nix - ./modules/hm-system-defaults.nix - home.nixosModules.home-manager - agenix.nixosModules.age - { - # inherit system pkgs inputs; - home-manager.useGlobalPkgs = true; - home-manager.useUserPackages = true; - home-manager.users.mrhedgehog = import ./home/mrhedgehog.nix { inherit system pkgs inputs; }; - } - ] - ); - }; - }; - homeConfigurations = { - inherit self system pkgs inputs; - mrhedgehog = inputs.home.lib.homeManagerConfiguration { - inherit system pkgs; - homeDirectory = "/home/mrhedgehog"; - username = "mrhedgehog"; - configuration.imports = [ ./home/mrhedgehog.nix { inherit system pkgs; } ]; - }; - }; - }; -}