Nix Flakes configuration for MacOS, NixOS and WSL
0
fork

Configure Feed

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

at main 15 lines 259 B view raw
1{ inputs, ... }: 2{ 3 flake.nixosModules.workstation-base = { pkgs, ... }: { 4 imports = with inputs.self.nixosModules; [ 5 bootloader 6 audio 7 kde-desktop 8 ]; 9 10 environment.systemPackages = with pkgs; [ 11 git 12 just 13 ]; 14 }; 15}