Remove unused files and references

This commit is contained in:
Oliver Davies 2024-07-08 19:20:22 +01:00
parent 84cff06cf3
commit ad796ad495
8 changed files with 2 additions and 280 deletions
lib/nixos/modules

View file

@ -1,11 +0,0 @@
{ pkgs, ... }:
{
services = {
displayManager.sddm.enable = true;
xserver.desktopManager.gnome.enable = true;
};
environment.systemPackages = with pkgs; [ networkmanagerapplet ];
}

View file

@ -1,33 +0,0 @@
{ inputs, username, ... }:
{ pkgs, ... }:
{
services.displayManager.defaultSession = "sway";
programs.sway.enable = true;
xdg.portal = {
enable = true;
extraPortals = with pkgs; [ xdg-desktop-portal-wlr ];
};
home-manager.users.${username} =
{ pkgs, ... }:
{
home.sessionVariables = {
MOZ_ENABLE_WAYLAND = "1";
MOZ_USE_XINPUT2 = "1";
QT_QPA_PLATFORM = "wayland";
SDL_VIDEODRIVER = "wayland";
XDG_CURRENT_DESKTOP = "sway";
XDG_SESSION_TYPE = "wayland";
};
home.packages = with pkgs; [
i3status
swaybg
wdisplays
wl-clipboard
wofi
];
};
}