diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2026-09-22 17:44:43 -0500 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2026-09-22 17:44:43 -0500 |
| commit | 57b19ef7d6419285e84baa4485ee5ee48c0d51ff (patch) | |
| tree | c53bbbe8871a6960ce6a814caa5d12860fcc3241 /flake.nix | |
| parent | 4c82b9be8d81da262e8503642aac69f4acb60c2e (diff) | |
| download | nixos-57b19ef7d6419285e84baa4485ee5ee48c0d51ff.tar.xz nixos-57b19ef7d6419285e84baa4485ee5ee48c0d51ff.zip | |
add embedtube input and shorten names of flake inputs + combine them into single lines
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 40 |
1 files changed, 10 insertions, 30 deletions
@@ -5,34 +5,14 @@ rec { nixpkgs.url = "github:nixos/nixpkgs/nixos-26.05"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; - sops-nix = { - url = "github:Mic92/sops-nix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - home-manager = { - url = "github:nix-community/home-manager/release-26.05"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - arkenfox = { - url = "github:dwarfmaster/arkenfox-nixos"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - reposync = { - url = "git://git.tjkeller.xyz/hm-reposync"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - open-bamboo-networking = { - url = "git://git.tjkeller.xyz/open-bamboo-network-plugin-flake"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - neovim-vanilla-wrapped = { - url = "git://git.tjkeller.xyz/neovim-vanilla-wrapped"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - firefox-userchrome = { - url = "git://git.tjkeller.xyz/firefox-chrome"; - inputs.nixpkgs.follows = "nixpkgs"; - }; + sops-nix = { url = "github:Mic92/sops-nix" ; inputs.nixpkgs.follows = "nixpkgs"; }; + home-manager = { url = "github:nix-community/home-manager/release-26.05" ; inputs.nixpkgs.follows = "nixpkgs"; }; + arkenfox = { url = "github:dwarfmaster/arkenfox-nixos" ; inputs.nixpkgs.follows = "nixpkgs"; }; + reposync = { url = "git://git.tjkeller.xyz/hm-reposync" ; inputs.nixpkgs.follows = "nixpkgs"; }; + open-bamboo = { url = "git://git.tjkeller.xyz/open-bamboo-network-plugin-flake" ; inputs.nixpkgs.follows = "nixpkgs"; }; + neovim-vanilla = { url = "git://git.tjkeller.xyz/neovim-vanilla-wrapped" ; inputs.nixpkgs.follows = "nixpkgs"; }; + ff-userchrome = { url = "git://git.tjkeller.xyz/firefox-chrome" ; inputs.nixpkgs.follows = "nixpkgs"; }; + embedtube = { url = "git://git.tjkeller.xyz/embedtube" ; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = { nixpkgs, home-manager, ... }@inputs: let @@ -41,8 +21,8 @@ rec { homeManagerModules = [ inputs.arkenfox.hmModules.arkenfox inputs.reposync.hmModules.reposync - inputs.open-bamboo-networking.hmModules.open-bamboo-networking - inputs.neovim-vanilla-wrapped.hmModules.neovim-vanilla-wrapped + inputs.open-bamboo.hmModules.open-bamboo-networking + inputs.neovim-vanilla.hmModules.neovim-vanilla-wrapped ./home-manager ]; mkNixosConfiguration = system: hostname: nixpkgs.lib.nixosSystem { |
