nixos/home-manager config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

begin cache host

+23
+3
home.nix
··· 121 121 neofetch 122 122 htop 123 123 nvtop-nvidia 124 + 125 + # Infrastructure 126 + scaleway-cli 124 127 ] ++ gfxpkgs; 125 128 126 129 # Home Manager is pretty good at managing dotfiles. The primary way to manage
+20
hosts/cache/flake.nix
··· 1 + { 2 + description = "Binary Cache (cache.bates64.com)"; 3 + inputs = { 4 + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; 5 + }; 6 + outputs = { self, nixpkgs, ... }: 7 + let 8 + lib = nixpkgs.lib; 9 + in { 10 + nixosConfigurations = { 11 + saturn = lib.nixosSystem { 12 + system = "x86_64-linux"; 13 + modules = [ 14 + ./hardware-configuration.nix 15 + ./configuration.nix 16 + ]; 17 + }; 18 + }; 19 + }; 20 + }