mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
Upload New File
This commit is contained in:
parent
30931a1e08
commit
909e3e695f
1 changed files with 32 additions and 0 deletions
32
COSMIC/cosmic.nix
Normal file
32
COSMIC/cosmic.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ unstable, config, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Enable COSMIC
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager.cosmic-greeter.enable = true;
|
||||
desktopManager.cosmic.enable = true;
|
||||
};
|
||||
|
||||
# Grab unstable NixOS packages for using and building COSMIC
|
||||
environment.systemPackages = (with pkgs; [
|
||||
rustc
|
||||
cargo
|
||||
cosmic-launcher
|
||||
cosmic-applibrary
|
||||
cosmic-panel
|
||||
cosmic-greeter
|
||||
cosmic-settings
|
||||
cosmic-settings-daemon
|
||||
cosmic-screenshot
|
||||
cosmic-term
|
||||
cosmic-files
|
||||
cosmic-edit
|
||||
xdg-desktop-portal-cosmic
|
||||
# For screenshots until cosmic-screenshot is updated
|
||||
ksnip
|
||||
]);
|
||||
|
||||
# Fix cosmic-greeter
|
||||
security.pam.services.cosmic-greeter = {};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue