diff options
| author | 2024-11-12 22:39:02 -0500 | |
|---|---|---|
| committer | 2024-11-12 22:39:02 -0500 | |
| commit | 66ef19bafce2013f8878942e199541c8c994403c (patch) | |
| tree | b8d67b1112f9c44d3d296d1741f5794dc8a25406 | |
| parent | 53a0a5473f45d37027af9663638adbf56667e4ca (diff) | |
| download | dotfiles-66ef19bafce2013f8878942e199541c8c994403c.tar.gz dotfiles-66ef19bafce2013f8878942e199541c8c994403c.tar.bz2 dotfiles-66ef19bafce2013f8878942e199541c8c994403c.zip | |
Cleanup flake
| -rw-r--r-- | flake.nix | 36 |
1 files changed, 3 insertions, 33 deletions
@@ -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}; |