summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix36
1 files changed, 3 insertions, 33 deletions
diff --git a/flake.nix b/flake.nix
index 02fe3ab..9bcb27f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -114,6 +114,7 @@
monitors = mkOption { type = monitorSettings; };
};
};
+
nixosConfigurations.sofue = let
system = "x86_64-linux";
source-pkgs = nixpkgs.legacyPackages.${system};
@@ -205,6 +206,7 @@
./hosts/sofue/configuration.nix
];
};
+
nixosConfigurations.yashinoki = let
system = "x86_64-linux";
source-pkgs = nixpkgs.legacyPackages.${system};
@@ -255,39 +257,7 @@
./hosts/yashinoki/configuration.nix
];
};
- nixosConfigurations.gem = nixpkgs.lib.nixosSystem {
- system = "x86_64-linux";
- modules = [
- ({ pkgs, ... }: { nixpkgs.overlays = [
- nur.overlay
- (self: super: { local-fonts = pkgs.stdenv.mkDerivation local-fonts; })
- (self: super: {
- sway-unwrapped = super.sway-unwrapped.overrideAttrs (old: {
- patches = old.patches ++ [];
- });
- })
- (self: super: {
- vimPlugins = super.vimPlugins.extend (final: prev: {
- mini-nvim = prev.mini-nvim.overrideAttrs (old: {
- patches = [
- ./files/nvim/mini_starter_picture.diff
- ];
- });
- fzf-vim = prev.fzf-vim.overrideAttrs (old: {
- patches = [
- ./files/nvim/fzf_no_linenum.diff
- ];
- });
- });
- })
- ];})
- home-manager.nixosModules.home-manager {
- home-manager.useGlobalPkgs = true;
- home-manager.useUserPackages = true;
- }
- ./hosts/gem/configuration.nix
- ];
- };
+
nixosConfigurations.the-p = let
system = "x86_64-linux";
source-pkgs = nixpkgs.legacyPackages.${system};