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