Compare commits
No commits in common. "0bc23cc772f7677514711ff491e08a773f5000ca" and "6a73e54b73248a57ac437f268d7226e0ad095b4f" have entirely different histories.
0bc23cc772
...
6a73e54b73
6 changed files with 10 additions and 16 deletions
|
@ -1,5 +0,0 @@
|
||||||
{pkgs, ...}: {
|
|
||||||
imports = [
|
|
||||||
../common
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,5 +1,4 @@
|
||||||
{
|
{
|
||||||
pkgs,
|
|
||||||
inputs,
|
inputs,
|
||||||
outputs,
|
outputs,
|
||||||
...
|
...
|
||||||
|
@ -8,19 +7,16 @@ 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,6 +3,10 @@
|
||||||
{
|
{
|
||||||
inputs,
|
inputs,
|
||||||
outputs,
|
outputs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
heliox-cli,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
# You can import other NixOS modules here
|
# You can import other NixOS modules here
|
||||||
|
@ -37,6 +41,7 @@
|
||||||
../common/optional/udisks.nix
|
../common/optional/udisks.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
# You can add overlays here
|
# You can add overlays here
|
||||||
overlays = [
|
overlays = [
|
||||||
|
@ -68,8 +73,6 @@
|
||||||
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,4 +13,8 @@
|
||||||
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,7 +3,6 @@
|
||||||
systemd-boot = {
|
systemd-boot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
consoleMode = "max";
|
consoleMode = "max";
|
||||||
configurationLimit = 42;
|
|
||||||
};
|
};
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -63,12 +63,9 @@
|
||||||
|
|
||||||
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