Compare commits
No commits in common. "d12ac816d2d0934447e51576f368f1667052e6c1" and "3c125cd45160e52043009ea9df7dbd3d457e553d" have entirely different histories.
d12ac816d2
...
3c125cd451
5 changed files with 10 additions and 22 deletions
11
flake.nix
11
flake.nix
|
@ -9,7 +9,7 @@
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# nixgl.url = "github:nix-community/nixGL";
|
||||
nixgl.url = "github:nix-community/nixGL";
|
||||
|
||||
rose-pine.url = "git+https://git.punkfairie.net/punkfairie/rose-pine-nix";
|
||||
|
||||
|
@ -35,11 +35,10 @@
|
|||
home-manager.lib.homeManagerConfiguration {
|
||||
inherit pkgs;
|
||||
|
||||
extraSpecialArgs = # with inputs;
|
||||
{
|
||||
# inherit nixgl;
|
||||
inherit inputs;
|
||||
};
|
||||
extraSpecialArgs = with inputs; {
|
||||
inherit nixgl;
|
||||
inherit inputs;
|
||||
};
|
||||
|
||||
modules = [
|
||||
./home
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
pkgs,
|
||||
# nixgl,
|
||||
nixgl,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
@ -10,9 +10,9 @@
|
|||
targets.genericLinux.enable = true;
|
||||
|
||||
# GPU integration.
|
||||
# nixGL.packages = nixgl.packages;
|
||||
# nixGL.defaultWrapper = "nvidia";
|
||||
# nixGL.installScripts = [ "nvidia" ];
|
||||
nixGL.packages = nixgl.packages;
|
||||
nixGL.defaultWrapper = "nvidia";
|
||||
nixGL.installScripts = [ "nvidia" ];
|
||||
|
||||
home.language.base = "en_US.UTF-8";
|
||||
|
||||
|
@ -46,7 +46,6 @@
|
|||
|
||||
imports = [
|
||||
./programs
|
||||
./services
|
||||
./xdg.nix
|
||||
./xorg
|
||||
];
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = with pkgs; [
|
||||
clipboard-jh
|
||||
];
|
||||
|
||||
home.sessionVariables = {
|
||||
CLIPBOARD_THEME = "ansi";
|
||||
};
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
./clipboard.nix
|
||||
./syncthing.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
''
|
||||
sudo mount -a
|
||||
"$HOME/.config/xrandr/desktop.sh"
|
||||
copyq &
|
||||
mpd &
|
||||
pidgin &
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue