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