- Enhanced ncli.nix to include generation information during NixOS rebuild and update commands. - Updated niri.nix to include the new stylix module. - Adjusted aliases to ensure correct path referencing. - And some minor changes
47 lines
780 B
Nix
47 lines
780 B
Nix
{ config, inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
# ./autostart.nix
|
|
../modules/noctalia
|
|
../modules/hyprlock
|
|
../modules/hyprpaper
|
|
../modules/stylix.nix
|
|
];
|
|
|
|
home-manager.sharedModules = [
|
|
./home.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
mako
|
|
waybar
|
|
fuzzel
|
|
];
|
|
|
|
# programs = {
|
|
# niri = {
|
|
# enable = true;
|
|
# };
|
|
# };
|
|
|
|
|
|
#services.xserver.enable = true;
|
|
#services.xserver.displayManager.sddm.enable = true;
|
|
|
|
# xdg.portal = {
|
|
# enable = true;
|
|
# extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
|
# };
|
|
|
|
#sound.enable = true;
|
|
#security.rtkit.enable = true;
|
|
#services.pipewire = {
|
|
# enable = true;
|
|
# alsa.enable = true;
|
|
# #alsa.support3Bbit = true;
|
|
# pulse.enable = true;
|
|
# jack.enable = true;
|
|
#};
|
|
}
|