initial comit

This commit is contained in:
2025-07-10 14:28:15 +02:00
commit 2bb359c70c
19 changed files with 917 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{ config, lib, pkgs, ... }
{
environment.systemPackages = with pkgs; [
]
# Enable CUPS to print documents.
services.printing.enable = true;
# sound setup
nixpkgs.config.pulseaudio.enable = true;
services.pulseaudio.enable = true;
}
+11
View File
@@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
jdk
jetbrains.pycharm-professional
mongodb-compass
];
}
+10
View File
@@ -0,0 +1,10 @@
{ config, pkgs, ... }
{
# ly display manager
services.ly.enable = true;
# setup persmission for set in wayland
programs.seatd.enable = true;
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }
{
}
+28
View File
@@ -0,0 +1,28 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
xwayland
ly
sway
swaylock
swayidle
nwg-displays
# screenshot stuff
grim
slurp
wl-clipboard
mako
];
services.displayManager.ly.enable = true;
programs.xwayland.enable = true;
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
}