beginning a lot of reorganizing stuff

This commit is contained in:
mjallen18
2025-05-30 10:39:27 -05:00
parent 705220a704
commit 77272fb931
24 changed files with 401 additions and 149 deletions

View File

@@ -3,7 +3,7 @@ let
configLimit = 5;
# default = "@saved";
kernel = pkgs.linuxPackages_cachyos;
pkgsVersion = pkgs.unstable;
pkgsVersion = pkgs; #.unstable;
in
{
# Configure bootloader with lanzaboot and secureboot

View File

@@ -9,7 +9,7 @@
...
}:
let
pkgsVersion = pkgs.unstable;
pkgsVersion = pkgs; #.unstable;
environmentVariables = {
STEAM_FORCE_DESKTOPUI_SCALING = "1.0";
GDK_SCALE = "1";
@@ -158,10 +158,6 @@ in
];
};
coolercontrol.enable = true;
kdeconnect = {
enable = true;
package = pkgs.gnomeExtensions.gsconnect;
};
};
# Common Configuration

View File

@@ -1,21 +1,9 @@
{ config, lib, pkgs, ... }:
let
pkgsVersion = pkgs.unstable;
pkgsVersion = pkgs; #.unstable;
in
{
services = {
# Enable Desktop Environment.
xserver = {
desktopManager.gnome.enable = true;
# Enable Desktop Environment.
displayManager = {
gdm.enable = lib.mkDefault true;
gdm.wayland = lib.mkDefault true;
};
};
gnome.gnome-remote-desktop.enable = true;
# Enable Flatpak
flatpak.enable = lib.mkDefault false;

View File

@@ -2,7 +2,7 @@
let
user = "matt";
passwordFile = config.sops.secrets."desktop/matt_password".path;
pkgsVersion = pkgs.unstable;
pkgsVersion = pkgs; #.unstable;
in
{
users.users."${user}" = {

View File

@@ -75,7 +75,7 @@ let
if __name__ == "__main__":
main()
'';
pkgsVersion = pkgs.unstable;
pkgsVersion = pkgs; #.unstable;
in
{
systemd = {

View File

@@ -21,8 +21,6 @@
./samba.nix
./services.nix
./sops.nix
../default.nix
../../modules/desktop-environments/cosmic/default.nix
];
powerManagement.cpuFreqGovernor = "powersave";