dregil: Use gnome for now by default
This commit is contained in:
parent
2e7fa6eb14
commit
efa99d6331
6 changed files with 26 additions and 31 deletions
14
flake.nix
14
flake.nix
|
|
@ -28,16 +28,6 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs-droid";
|
||||
};
|
||||
|
||||
# emacs = {
|
||||
# url = "github:nix-community/emacs-overlay";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
#
|
||||
# simplex-chat = {
|
||||
# url = "github:simplex-chat/simplex-chat";
|
||||
# inputs.nixpkgs.follows = "nixpkgs";
|
||||
# };
|
||||
|
||||
# age for nix to store encrypted passwords conveniently
|
||||
agenix = {
|
||||
url = "github:ryantm/agenix";
|
||||
|
|
@ -129,6 +119,10 @@
|
|||
modules = [ ./hosts/igor ];
|
||||
};
|
||||
|
||||
homeConfigurations."alex@dregil" = home-manager.lib.homeManagerConfiguration {
|
||||
|
||||
};
|
||||
|
||||
nixOnDroidConfigurations.default =
|
||||
with inputs;
|
||||
nix-on-droid.lib.nixOnDroidConfiguration {
|
||||
|
|
|
|||
|
|
@ -5,9 +5,6 @@
|
|||
inputs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
electron-overlay = final: prev: { electron = final.electron_25; };
|
||||
in
|
||||
{
|
||||
imports = [ ];
|
||||
|
||||
|
|
|
|||
|
|
@ -9,19 +9,19 @@
|
|||
imports = [
|
||||
./cli.nix
|
||||
./programs/rofi
|
||||
./programs/xmonad
|
||||
#./programs/i3
|
||||
# ./programs/xmonad
|
||||
# ./programs/i3
|
||||
./programs/jitsi-meet
|
||||
./programs/simplex-chat
|
||||
./programs/zathura
|
||||
./programs/autorandr
|
||||
./services/polybar
|
||||
./services/dunst
|
||||
./services/udiskie
|
||||
# ./services/polybar
|
||||
# ./services/dunst
|
||||
# ./services/udiskie
|
||||
# ./services/picom
|
||||
./services/screen-locker
|
||||
./services/blueman-applet
|
||||
./services/network-manager
|
||||
# ./services/screen-locker
|
||||
# ./services/blueman-applet
|
||||
# ./services/network-manager
|
||||
./services/syncthing
|
||||
./services/git-sync
|
||||
./modules/email.nix
|
||||
|
|
@ -100,7 +100,7 @@
|
|||
{
|
||||
enable = true;
|
||||
loginExtra = auth-socket-env;
|
||||
initExtra = auth-socket-env;
|
||||
initContent = auth-socket-env;
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,9 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
config.xsession.windowManager.xmonad = {
|
||||
enable = true;
|
||||
|
|
@ -8,5 +12,8 @@
|
|||
};
|
||||
|
||||
# control backlight
|
||||
config.home.packages = [ pkgs.xorg.xbacklight pkgs.scrot ];
|
||||
config.home.packages = [
|
||||
pkgs.xorg.xbacklight
|
||||
pkgs.scrot
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -50,11 +50,7 @@ in
|
|||
extraLocaleSettings = {
|
||||
TIME_STYLE = "iso";
|
||||
};
|
||||
supportedLocales = [
|
||||
"C.UTF-8/UTF-8"
|
||||
"en_US.UTF-8/UTF-8"
|
||||
"de_DE.UTF-8/UTF-8"
|
||||
];
|
||||
extraLocales = "all";
|
||||
};
|
||||
|
||||
console = {
|
||||
|
|
|
|||
|
|
@ -28,9 +28,10 @@
|
|||
};
|
||||
|
||||
desktopManager.xfce.enable = true;
|
||||
desktopManager.gnome.enable = true;
|
||||
};
|
||||
|
||||
desktopManager.gnome.enable = true;
|
||||
|
||||
# Enable touchpad support (enabled default in most desktopManager).
|
||||
libinput = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue