yep, more dotfiles
1rec { 2 default = dotfiles; 3 4 dotfiles = { 5 path = ../.; 6 description = "mrnossiom's dotfiles"; 7 welcomeText = '' 8 Wait, someone cloned my dotfiles? 9 ''; 10 }; 11 12 blank = { 13 path = ./blank; 14 description = "Flake for default/blank setup"; 15 welcomeText = "`direnv allow`"; 16 }; 17 18 c = { 19 path = ./c; 20 description = "Flake for C setup"; 21 welcomeText = "`direnv allow`"; 22 }; 23 24 rust = { 25 path = ./rust; 26 description = "Flake for Rust setup"; 27 welcomeText = "`direnv allow`"; 28 }; 29 30 rust-pkg = { 31 path = ./rust-pkg; 32 description = "Flake for Rust setup with intent to package"; 33 welcomeText = "`direnv allow`"; 34 }; 35}