Compare commits

..

3 Commits

7 changed files with 15 additions and 42 deletions

View File

@ -33,11 +33,9 @@
outputs = { self, nixpkgs, home-manager, nix-darwin, kak, unispect, ansi-utils, unambig-path }:
let
xdg-runtime-dir = "/tmp/xdg-rt";
mkPkgs = system: import nixpkgs { system = system; config.allowUnfree = true; };
mkHome = {username, home-dir, prompt-color, system, pkgs} : import ./home/common.nix {
inherit username home-dir prompt-color pkgs xdg-runtime-dir;
inherit username home-dir prompt-color pkgs;
kak-pkg = kak.packages.${system}.kak;
unispect = unispect.packages.${system}.unispect;
@ -45,10 +43,10 @@
unambig-path = unambig-path.packages.${system}.unambig-path;
};
mkPC = {system, pkgs} : import ./home/graphical.nix {
inherit pkgs xdg-runtime-dir;
inherit pkgs;
};
mkLaptop = {system, pkgs} : import ./home/apps.nix {
inherit pkgs xdg-runtime-dir;
inherit pkgs;
};
mkDarwin = {system, pkgs}: import ./darwin.nix {

View File

@ -1,4 +1,4 @@
{ pkgs, xdg-runtime-dir }:
{ pkgs }:
{
home.packages = with pkgs; [
discord-canary

View File

@ -1,4 +1,4 @@
{ pkgs, username, home-dir, prompt-color, xdg-runtime-dir, kak-pkg, unispect, ansi-utils, unambig-path }:
{ pkgs, username, home-dir, prompt-color, kak-pkg, unispect, ansi-utils, unambig-path }:
let
kak = import ./kak.nix { kak = kak-pkg; inherit pkgs; };
@ -49,10 +49,6 @@ in rec {
# (extras.challtools python311Packages)
];
home.sessionVariables = {
XDG_RUNTIME_DIR = xdg-runtime-dir;
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;

View File

@ -1,4 +1,4 @@
{ pkgs, xdg-runtime-dir }:
{ pkgs }:
let
alacritty = import ./alacritty/alacritty.nix pkgs;

View File

@ -8,32 +8,23 @@
services.xserver = {
enable = true;
# desktopManager.xfce.enable = true;
# displayManager.lightdm = {
# background = ../backgrounds/${background-image};
# greeters.slick.enable = true;
# };
displayManager.gdm = {
enable = true;
autoSuspend = false;
};
desktopManager.gnome.enable = true;
# displayManager.sddm.enable = true;
# desktopManager.plasma6.enable = true;
displayManager.lightdm.enable = true;
xkb = {
layout = "fox";
options = "caps:escape";
extraLayouts.fox = {
description = "Layout suitable to be used by a fox";
languages = ["se"];
symbolsFile = ./kblayouts/fox-symbols.xkb;
typesFile = ./kblayouts/fox-types.xkb;
};
};
};
services.desktopManager.plasma6.enable = true;
services.displayManager.defaultSession = "plasma";
console.useXkbConfig = true;
# Enable sound.

View File

@ -1,3 +1,4 @@
default
xkb_symbols "fox" {
key <TLDE> {[ U1F408, U1F431, U1F408, U1F431 ]};
key <AE01> {[ 1, ampersand, VoidSymbol, VoidSymbol ]};
@ -52,4 +53,7 @@ xkb_symbols "fox" {
key <AB10> {[ z, Z, VoidSymbol, VoidSymbol ]};
key <SPCE> {[ space, space, space, space ]};
include "level3(lalt_switch)"
key <RTSH> { [ Alt_R ] };
};

View File

@ -1,16 +0,0 @@
xkb_types "noaltgr" {
virtual_modifiers Shift, Alt;
type "CTRL+ALT" {
modifiers = Shift + Alt;
map[None] = Level1;
map[Shift] = Level2;
map[Alt] = Level3;
map[Shift+Alt] = Level4;
level_name[Level1] = "Base";
level_name[Level2] = "Shift";
level_name[Level3] = "Alt";
level_name[Level4] = "Shift Alt";
};
};