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