mirror of
https://github.com/traxys/Nixfiles.git
synced 2026-02-15 20:00:20 +01:00
15 lines
423 B
Nix
15 lines
423 B
Nix
nixos-cosmic:
|
|
{ pkgs, ... }:
|
|
{
|
|
imports = [ nixos-cosmic.nixosModules.default ];
|
|
|
|
environment.systemPackages = with pkgs; [ playerctl ];
|
|
|
|
nix.settings = {
|
|
substituters = [ "https://cosmic.cachix.org/" ];
|
|
trusted-public-keys = [ "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE=" ];
|
|
};
|
|
|
|
services.desktopManager.cosmic.enable = true;
|
|
services.displayManager.cosmic-greeter.enable = true;
|
|
}
|