mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
various tweaks
This commit is contained in:
parent
beaf5202ca
commit
0e56188133
5 changed files with 17 additions and 13 deletions
|
|
@ -9,6 +9,7 @@
|
|||
./packages.nix
|
||||
./fonts.nix
|
||||
./thunar.nix
|
||||
./nur.nix
|
||||
];
|
||||
nix = {
|
||||
package = pkgs.nixFlakes;
|
||||
|
|
|
|||
20
flake.nix
20
flake.nix
|
|
@ -1,12 +1,13 @@
|
|||
{
|
||||
description = "testing";
|
||||
inputs = {
|
||||
nixpkgs.url = "nixpkgs/master";
|
||||
nixpkgs.url = "nixpkgs/nixos-unstable";
|
||||
home-manager.url = "github:nix-community/home-manager/master";
|
||||
home-manager.inputs.nixkpkgs.follows = "nixpkgs";
|
||||
nur.url = "github:nix-community/NUR";
|
||||
};
|
||||
|
||||
outputs = { nixpkgs, home-manager, ... }:
|
||||
outputs = { nixpkgs, home-manager, nur, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpkgs {
|
||||
|
|
@ -14,6 +15,7 @@
|
|||
config = {
|
||||
allowUnfree = true;
|
||||
packageOverrides = super: let self = super.pkgs; in {
|
||||
#more overrides can go here
|
||||
nerdfonts-overpass = self.nerdfonts.override {
|
||||
fonts = [ "Overpass" ];
|
||||
};
|
||||
|
|
@ -24,20 +26,18 @@
|
|||
in {
|
||||
homeManagerConfiguration = {
|
||||
gerg = home-manager.lib.homeManagerConfiguration {
|
||||
inherit system pkgs;
|
||||
username = "gerg";
|
||||
homeDirectory = "/home/gerg";
|
||||
configuration = {
|
||||
imports = [
|
||||
./home-manager.nix
|
||||
];
|
||||
};
|
||||
inherit pkgs;
|
||||
modules = [
|
||||
nur.nixosModules.nur
|
||||
./home-manager.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
nixosConfigurations = {
|
||||
gerg-laptop = lib.nixosSystem {
|
||||
inherit system pkgs;
|
||||
modules = [
|
||||
nur.nixosModules.nur
|
||||
./configuration.nix
|
||||
];
|
||||
};
|
||||
|
|
|
|||
|
|
@ -14,6 +14,8 @@
|
|||
];
|
||||
programs.home-manager.enable = true;
|
||||
home = {
|
||||
username = "gerg";
|
||||
homeDirectory = "/home/gerg";
|
||||
stateVersion = "22.11";
|
||||
file = {
|
||||
".background-image".source = ./images/stars.jpg;
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
services.dunst = {
|
||||
enable = true;
|
||||
iconTheme = {
|
||||
name = "Papirus";
|
||||
package = pkgs.papirus-icon-theme;
|
||||
package = pkgs.flat-remix-icon-theme;
|
||||
name = "Flat-Remix-Blue-Dark";
|
||||
size = "128X128";
|
||||
};
|
||||
settings = {
|
||||
|
|
|
|||
|
|
@ -21,6 +21,7 @@ environment.systemPackages = with pkgs; [
|
|||
dash
|
||||
#user/gui
|
||||
discord
|
||||
spotify
|
||||
spotify-tray
|
||||
vlc
|
||||
bitwarden
|
||||
|
|
@ -45,5 +46,5 @@ environment.systemPackages = with pkgs; [
|
|||
gpick
|
||||
xclip
|
||||
alsa-utils
|
||||
];
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue