Compare commits
6 commits
6a73e54b73
...
0bc23cc772
Author | SHA1 | Date | |
---|---|---|---|
0bc23cc772 | |||
a479aa7046 | |||
05498907b4 | |||
b52422d58c | |||
42bf9fba59 | |||
a1a5d9a90c |
6 changed files with 16 additions and 10 deletions
5
home/features/desktop/gnome/default.nix
Normal file
5
home/features/desktop/gnome/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [
|
||||
../common
|
||||
];
|
||||
}
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
outputs,
|
||||
...
|
||||
|
@ -7,16 +8,19 @@ in {
|
|||
imports = [
|
||||
./global
|
||||
./features/desktop/awesome
|
||||
# ./features/desktop/gnome
|
||||
./features/desktop/gnome
|
||||
./features/coding
|
||||
inputs.nix-colors.homeManagerModules.default
|
||||
];
|
||||
|
||||
home.packages = with pkgs; [nextcloud-client];
|
||||
|
||||
colorScheme = inputs.nix-colors.colorSchemes.catppuccin-mocha;
|
||||
nixpkgs = {
|
||||
config = {
|
||||
permittedInsecurePackages = [
|
||||
"electron-25.9.0"
|
||||
"nix-2.15.3"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -3,10 +3,6 @@
|
|||
{
|
||||
inputs,
|
||||
outputs,
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
heliox-cli,
|
||||
...
|
||||
}: {
|
||||
# You can import other NixOS modules here
|
||||
|
@ -41,7 +37,6 @@
|
|||
../common/optional/udisks.nix
|
||||
];
|
||||
|
||||
|
||||
nixpkgs = {
|
||||
# You can add overlays here
|
||||
overlays = [
|
||||
|
@ -73,6 +68,8 @@
|
|||
services.udev.packages = [inputs.heliox-cli.packages.x86_64-linux.default];
|
||||
environment.systemPackages = [inputs.heliox-cli.packages.x86_64-linux.default];
|
||||
|
||||
displayManager.sddm.enable = true;
|
||||
|
||||
# Force disable Nvidia PRIME, needed by nix-hardware
|
||||
hardware.nvidia.prime.offload.enable = false;
|
||||
|
||||
|
|
|
@ -13,8 +13,4 @@
|
|||
environment.profileRelativeSessionVariables = {
|
||||
QT_PLUGIN_PATH = ["/lib/qt-6/plugins"];
|
||||
};
|
||||
|
||||
services.xserver = {
|
||||
displayManager.sddm.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
systemd-boot = {
|
||||
enable = true;
|
||||
consoleMode = "max";
|
||||
configurationLimit = 42;
|
||||
};
|
||||
efi.canTouchEfiVariables = true;
|
||||
};
|
||||
|
|
|
@ -63,9 +63,12 @@
|
|||
|
||||
networking.hostName = "ludwig";
|
||||
|
||||
# environment.sessionVariables.QT_QPA_PLATFORM = "wayland";
|
||||
services.xserver.displayManager.gdm.enable = true;
|
||||
programs = {
|
||||
adb.enable = true;
|
||||
dconf.enable = true;
|
||||
xwayland.enable = true;
|
||||
};
|
||||
|
||||
hardware = {
|
||||
|
|
Loading…
Reference in a new issue